Created
August 28, 2013 02:50
-
-
Save muddydixon/6361635 to your computer and use it in GitHub Desktop.
特定のbranchの特定のファイルに対するcommitだけをmergeする方法ってどうやるんでしょうか?
こうじゃないですよね・・・
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
for hash in `git log --pretty=format:"%h" $branch $file`;do | |
echo git cherry-pick $hash; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment