使用git pull origin master, 出现以下错误:
You have not concluded your merge (MERGE_HEAD exists). Please, commit your changes before you can merge.
造成这个的原因可能是之前pull的代码,没有自动合并成功。
解决办法:
- 保留你本地的修改
git merge --abort git reset --merge
- 合并之后,提交本地合并
- git pull 线上最新版本
Comments on this entry are closed.