Skip to content

Instantly share code, notes, and snippets.

@gsheasby
gsheasby / gist:83f35c484cc7540e7e69e2c53477dfea
Last active April 30, 2018 16:48 — forked from bhumphrey/gist:3764983
Cherry-picking from another fork
git checkout <branch>
git remote add <other-fork-alias> <other-fork-URL>
git fetch <other-fork-alias>
git log <other-fork-alias>/<branch> | head -n1 | cut -d ' ' -f 2 | xargs git cherry-pick
# git cherry-pick <commit-hash>
git push -u