error: Your local changes to the following files would be overwritten by merge 解决方案
Posted 南风晚来晚相识
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了error: Your local changes to the following files would be overwritten by merge 解决方案相关的知识,希望对你有一定的参考价值。
拉取代码出现 error: Your local changes to the following files would be overwritten by merge 解决方案
你团队其他成员修改了某文件并已提交入库。
你在pull之前修改了本地该文件,等你修改完代码再pull时,这时会报错如下错误:
error: Your local changes to the following files would be overwritten by merge
解决办法1 --保留修改的代码
执行以下三条命令
git stash #封存修改
git pull origin master
git stash pop #把修改还原
这三行代码是先封存我们本地的修改。
然后拉取远端代码
最后将我们封存的代码恢复原状。
然后在执行 git add . --> pull -->commit --> push
在我们执行 pull 时候注意是否有冲突
注释
git stash:备份当前工作区内容,从最近的一次提交中读取相关内容,让工作区保证和上次提交的内容一致。
同时,将当前工作区内容保存到Git栈中
$ git stash
执行后会出现:Saved working directory and index state WIP on xxx
git pull:拉取服务器上当前分支代码
git stash pop:从Git栈中读取最近一次保存的内容,恢复工作区相关内容。
同时,用户可能进行多次stash操作,需要保证后stash的最先被取到,
所以用栈(先进后出)来管理;pop取栈顶的内容并恢复
执行后会出现
Auto-merging xxxxxx
CONFLICT (content): Merge conflict in yyyyyy
The stash entry is kept in case you need it again.
git stash list:显示Git栈内的所有备份,可以利用这个列表来决定从那个地方恢复。
git stash clear:清空Git栈
方法2:遗弃当前的修改
核心思想就是版本回退,具体命令如下
git reset --hard
git pull origin master
注:不建议使用第二种。除非你再三确定不需要本地的修改了。
遇见问题,这是你成长的机会,如果你能够解决,这就是收获。
出处:https://www.cnblogs.com/IwishIcould/
想问问题,打赏了卑微的博主,求求你备注一下的扣扣或者微信;这样我好联系你;(っ•̀ω•́)っ✎⁾⁾!
如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,或者关注博主,在此感谢!
万水千山总是情,打赏5毛买辣条行不行,所以如果你心情还比较高兴,也是可以扫码打赏博主(っ•̀ω•́)っ✎⁾⁾!
想问问题,打赏了卑微的博主,求求你备注一下的扣扣或者微信;这样我好联系你;(っ•̀ω•́)っ✎⁾⁾!
如果文中有什么错误,欢迎指出。以免更多的人被误导。
git发生冲突:error: Your local changes to the following files would be overwritten by merge
当使用 git pull 拉取代码时发生冲突报错:
error: Your local changes to the following files would be overwritten by merge: xxx/xxx.php Please commit your changes or stash them before you merge.
Aborting
出现这个情况是因为他人修改的xxx.php文件并提交到git库,与你本地的修改发生了冲突所以 git pull 失败,可以使用 git stash 解决:
1.通过 git stash 备份本地的修改,同时将工作区恢复到上次提交
git stash
2.使用 git pull 将git库代码拉取到本地
git pull
3.使用 git stash pop 将之前备份的修改在 git pull 拉取之后的基础上恢复到工作区
git stash pop
到这里就可以正常提交自己本地的代码库啦
git add -A git commit -m ‘ ‘ git push
如果存在多个备份可使用 git stash list 查看, git stash clear 清除所有备份
以上是关于error: Your local changes to the following files would be overwritten by merge 解决方案的主要内容,如果未能解决你的问题,请参考以下文章
git pull error: Your local changes to the following files would be overwritten by merge
git pull error: Your local changes to the following files would be overwritten by merge
git:error: Your local changes to the following files would be overwritten by merge:
git发生冲突:error: Your local changes to the following files would be overwritten by merge
git pull 报错 error: Your local changes to the following files would be overwritten by merge
error: Your local changes to the following files would be overwritten by checkout: