git pull的时候发生冲突的解决方法之“error Your local changes to the following files would be overwritten by merge”
Posted 小家电维修
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git pull的时候发生冲突的解决方法之“error Your local changes to the following files would be overwritten by merge”相关的知识,希望对你有一定的参考价值。
1.背景
参考git忽略.ideaworkspace.xml文件文章,虽然处理了后期上传或者下载这种.idea时出现冲突问题的情况,但是这次出现问题却无法使用以上方式,因为文件当时已经冲突了。
目前git的报错提示已经相关友好了,可以直观的发现,这里可以通过commit的方式解决这个冲突问题,但还是想看看其他大佬是怎么解决这类问题的。
2.解决方案
在网上查了资料和其他大佬的博客,得到了两种解决方法:
2.1 方法一、stash
git stash
git commit
git stash pop
接下来diff一下此文件看看自动合并的情况,并作出相应修改。
git stash: 备份当前的工作区的内容,从最近的一次提交中读取相关内容,让工作区保证和上次提交的内容一致。同时,将当前的工作区内容保存到Git栈中。
git stash pop: 从Git栈中读取最近一次保存的内容,恢复工作区的相关内容。由于可能存在多个Stash的内容,所以用栈来管理,pop会从最近的一个stash中读取内容并恢复。
git stash list: 显示Git栈内的所有备份,可以利用这个列表来决定从那个地方恢复。
git stash clear: 清空Git栈。此时使用gitg等图形化工具会发现,原来stash的那些节点都消失了。
2.2 方法二、放弃本地修改,直接覆盖
git reset --hard
git pull
作者:小家电维修
以上是关于git pull的时候发生冲突的解决方法之“error Your local changes to the following files would be overwritten by merge”的主要内容,如果未能解决你的问题,请参考以下文章
git merge git pull时候遇到冲突解决办法git stash
git merge git pull时候遇到冲突解决办法git stash