git 解决远程和本地冲突
Posted shininguang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 解决远程和本地冲突相关的知识,希望对你有一定的参考价值。
本地先commit
1. git rebase origin/master 根据你自己的分支rebase
2. 编辑冲突文件,合并文件。例如:
<<<<<<< 53de7c8f172f73b1fbd0c8f11e5c03f424f7f3c6 合并测试 ======= 去年 买了 个表 >>>>>>> test
3. git rebase --continue
4. git add ,git commit 提交即可
参考http://www.cnblogs.com/sinojelly/archive/2011/08/07/2130172.html
以上是关于git 解决远程和本地冲突的主要内容,如果未能解决你的问题,请参考以下文章