因为在当前分支上提交了代码,这部分代码同时也需要提交到其他分支。
具体的步骤如下:
git checkout 其他分支
git cherry-pick <commit_hash>
git push origin 其他分支
举例,我已经在B分支上提交了代码,我想把这次提交再提到A分支上,
git checkout A
git cherry-pick B
git push review A
因为在当前分支上提交了代码,这部分代码同时也需要提交到其他分支。
具体的步骤如下:
git checkout 其他分支
git cherry-pick <commit_hash>
git push origin 其他分支
举例,我已经在B分支上提交了代码,我想把这次提交再提到A分支上,
git checkout A
git cherry-pick B
git push review A