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

git提交时冲突问题解决

时间:2017-06-27 20:01:00      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:git add   failed   commit   服务   pre   info   nbsp   fail   bsp   

用git 提交项目时正确的操作应该是

git status   //查看改动
git add .    //添加到本地仓库
git commit -m:"备注"     //提交
git pull --rebase origin xxx  //从远程仓库拉项目
git status  //再看看是不是一样的
git push origin xxx  //提交到远程仓库 

//gitlab的话还得登录gitlab账号去create merge request

然而我们改动完项目提交时,有时候会遇到冲突的情况

error: Failed to merge in the changes.
Using index info to reconstruct a base tree...

有这样的提示

这个时候用编辑器或IDE找出出现冲突的地方,看看留下服务器端的还是自己改的。改完之后进项以下操作

git add .
git commit -m:"xxx"
git rebase --continue
git status
git push origin xxx

//如果冲突已经解决完了的话,这里不会出意外

 

git提交时冲突问题解决

标签:git add   failed   commit   服务   pre   info   nbsp   fail   bsp   

原文地址:http://www.cnblogs.com/nurdun/p/7086597.html

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