Skip to content

Instantly share code, notes, and snippets.

View digibeuk's full-sized avatar

Martin Beukman digibeuk

  • Zaltbommel, Gelderland, The Netherlands
View GitHub Profile
@digibeuk
digibeuk / gist:7e4220704d492cf8af5853f69bedba54
Last active October 26, 2018 13:59 — forked from bhumphrey/gist:3764983
Cherry-picking from another fork
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>