-
-
Save rxhanson/df0f2b49f402ea181f5ed61b20f9cd8d to your computer and use it in GitHub Desktop.
Cherry-picking from another fork
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git remote add <other-fork-alias> <other-fork-URL> | |
git checkout <branch> | |
git fetch <other-fork-alias> | |
git cherry-pick <commit-hash> | |
git push <your-fork-alias> | |
git remote remove <other-fork-alias> | |
git remote -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment