标签: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 add failed commit 服务 pre info nbsp fail bsp
原文地址:http://www.cnblogs.com/nurdun/p/7086597.html