登录
注册
写文章
发现
工具
You have not concluded your merge (MERGE_HEAD exists)
_3t3lfz KEKfID
编辑文章
You have not concluded your merge (MERGE_HEAD exists)
asfx站长
2021.03.29 16:56:01
阅读
965
错误可能是因为在你以前pull下来的代码没有自动合并导致的 有2个解决办法: ##### 1.保留你本地的修改 ``` git merge --abort git reset --merge ``` 合并后记得一定要提交这个本地的合并 然后在获取线上仓库 ``` git pull ``` ##### 2.down下线上代码版本,抛弃本地的修改 不建议这样做,但是如果你本地修改不大,或者自己有一份备份留存,可以直接用线上最新版本覆盖到本地 ``` git fetch --all git reset --hard origin/master git fetch ```
我的主页
退出