标签:stash please 返回 origin 合并 files local The change
git合并出现冲突:
Your local changes to the following files would be overwritten by merge:
Please, commit your changes or stash them before you can merge.
解决方案:
git stash //使返回到自己上一个commit,先隐藏
git pull origin master //拉取最新的代码
git stash pop //回到自己修改的代码
标签:stash please 返回 origin 合并 files local The change
原文地址:https://www.cnblogs.com/heqiyoujing/p/9726324.html