标签: git
现在,主分支的提交顺序为1,3,4。 2是与1分开的提交。 我需要将订单设为1、2、3、4。我该怎么做?我无法弄清楚如何在这里使用rebase。 感谢您的帮助
答案 0 :(得分:3)
您需要一个简单的git rebase:
git rebase
git checkout sumant # your current branch git rebase origin/master
注意:
origin/master
c0fbd68
git