Sorry for newbie question but is there a way to import someone else commit (to his own repo) to my repo? it's gonna be a hard thing to change 900+ files manually
You need to add the other's repo as a remote repo of yours, and fetch its changes:
git remote add matefork <github-url>
git fetch matefork
Then git knows about the commit, just cherry-pick it with its SHA
git cherry-pick <SHA1>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With