Is it possible to cherry-pick a commit from another git repository?
The answer, as given, is to use format-patch but since the question was how to cherry-pick from another folder, here is a piece of code to do just that: $ git –git-dir=../<some_other_repo>/.git \ format-patch -k -1 –stdout <commit SHA> | \ git am -3 -k Explanation from Cong Ma comment Aug 28 ’14 git format-patch … Read more