git遇到:error: You have not concluded your merg

500阅读 0评论2022-08-23 jelon521
分类:LINUX

拉取git上的更新时出现错误如下:

点击(此处)折叠或打开

  1. error: You have not concluded your merge (MERGE_HEAD exists).
  2. hint: Please, commit your changes before merging.
  3. fatal: Exiting because of unfinished merge.

分析可能造成此问题的原因如下:
错误可能是因为在你一千pull下来的代码没有自动合并导致的。


解决方法有2个,如下:
1)、保留你本地的修改
git merge --abort
git reset --merge
合并后记得一定要提交这个本地的合并
然后再获取线上仓库
git pull


2)、down下线上代码版本,抛弃本地的修改
不建议这样做,但是如果你本地修改不大,或者自己有一份备份存留,可以直接用线上最新版本覆盖本地
git fetch --all
git reset --hard origin/master
git fetch

上一篇:Pycharm 折叠代码快捷键
下一篇:git管理中文命名的文件乱码问题解决