标签:file 使用 xxx class 修改 following lease 存在 基础
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 解决:
git stash
git pull
git stash pop
到这里就可以正常提交自己本地的代码库啦
git add -A git commit -m ‘ ‘ git push
如果存在多个备份可使用 git stash list 查看, git stash clear 清除所有备份
git发生冲突:error: Your local changes to the following files would be overwritten by merge
标签:file 使用 xxx class 修改 following lease 存在 基础
原文地址:https://www.cnblogs.com/52lnamp/p/12621456.html