假设当前的git工程有两个分支master和test。
在master分支上有一个提交,如果需要同步到test分支上该怎么处理呢?
简单用法:
git cherry-pick
操作步骤
使用以下命令切换到master分支
git checkout master
使用以下命令查看提交日志,并找到需要同步的commitid b4186070b4186070b4186070b4186070b4186070
git log
使用以下命令切换到test分支
git checkout test
使用以下命令,将commit id提交到当前分支
git cherry-pick
示例:
#git cherry-pick b4186070b4186070b4186070b4186070b4186070
#git push origin test:test
Tags:
git cherry-pick
git cherry-pick