在服务器站点执行 git pull
时,报错:
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: protected/config/main.php Please, commit your changes or stash them before you can merge.
解决方案:
方式一:如果希望保留生产服务器上所做的改动,仅仅并入新配置项,处理方法如下:
git stash git pull git stash pop
然后可以使用 git diff -w +文件名,来确认代码自动合并的情况。
- git stash:备份当前的工作区的内容,从最近的一次提交中读取相关内容,让工作区保证和上次提交的内容一致。同时,将当前的工作区内容保存到Git栈中。
- git stash pop:从Git栈中读取最近一次保存的内容,恢复工作区的相关内容。由于可能存在多个Stash的内容,所以用栈来管理,pop会从最近的一个stash中读取内容并恢复。
- git stash list:显示Git栈内的所有备份,可以利用这个列表来决定从那个地方恢复。
- git stash clear:清空Git栈。此时使用gitg等图形化工具会发现,原来stash的哪些节点都消失了。
方式二:如果希望用代码库中的文件完全覆盖本地工作版本,方法如下:
git reset --hard git pull
注意:我一般采用方法二,对于一些 上传文件夹、缓存文件夹,会被配置到
.gitignore
文件中。。。
参考: