当服务器上面的文件发生修改,然后本地仓库中的相应文件也作了修改,此时使用命令:git pull 的时候会出现如下提示信息: error: Your local changes to the following files would be overwritten by merge: ***(*表示相应的文件) Please, commit your changes or stash them before you can merge. 针对这种情况有两种解决方案: 1.如果希望保留生产服务器上
error: Your local changes to the following files would be overwritten by merge: Please commit your changes or stash them before you merge. 解决办法: 1.服务器代码合并本地代码 $ git stash //暂存当前正在进行的工作. $ git pull origin master //拉取服务器的代码 $ git stash pop //合并暂存的代码 2.