【git】git pull,Your local changes to the following files would be overwritten by

阅读更多
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、服务器代码覆盖本地代码
$git reset --hard  //回滚到上一个版本
$git pull origin master

作者:WenLia
链接:https://www.jianshu.com/p/b1d97c07cf2e
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

你可能感兴趣的:(git)