例如:要将A分支的一个commit合并到B分支:
首先切换到A分支:
git checkout A
git log
找出要合并的commit ID :
例如 commit 075cc9a4xxxxxxxxx8077ced2f01efe
然后切换到B分支
git checkout B
git cherry-pick commit 075cc9a4xxxxxxxxx8077ced2f01efe
这样就讲A分支的某次提交 合并到了B分支了
例如:要将A分支的一个commit合并到B分支:
首先切换到A分支:
git checkout A
git log
找出要合并的commit ID :
例如 commit 075cc9a4xxxxxxxxx8077ced2f01efe
然后切换到B分支
git checkout B
git cherry-pick commit 075cc9a4xxxxxxxxx8077ced2f01efe
这样就讲A分支的某次提交 合并到了B分支了