git rebase --continue解冲突操作
如果只是执行了 git rebase 命令,那么git会输出一下"错误"提示:
There is no tracking information for the current branch.
Please specify which branch you want to rebase against.
See git-rebase(1) for details.
git rebase '<branch>'
意思是说git rebase需要指定分支名。
接着,指定一个分支名:
git rebase 你的本地分支名
此时,本地代码和远程合并的代码冲突地方就显示出来了,到这里需要手动解冲突,去掉冲突的地方,解决后:
git rebase --continue
接下去就和普通的代码提交没两样了。
另外,
git rebase --abort
放弃解冲突操作事务。