码迷,mamicode.com
首页 > 其他好文 > 详细

How to deal with the Unmerged paths

时间:2014-06-18 19:49:55      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:class   com   文件   代码   name   line   

 

 


  如果新提交的分支代码和master有冲突,先checkout到分支merge master,解决冲突,

然后再checkout master,merge 分支.

(1) git checkout edit_package_page

     git merge master --no-ff

这时候会看到很多CONFLICT (add/add): Merge conflict in  <filenname>

    git status 查看所有的冲突文件

   vim 每一个文件解决一下冲突

   git add .

   git commit 

   git push

(2)git checkout master

    git merge edit_package_pages --no-ff

    git push

How to deal with the Unmerged paths,布布扣,bubuko.com

How to deal with the Unmerged paths

标签:class   com   文件   代码   name   line   

原文地址:http://www.cnblogs.com/iwangzheng/p/3790608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!