当前位置: 代码迷 >> 综合 >> Git报错:Git Pull Failed error: You have not concluded your merge (MERGE_HEAD exists).
  详细解决方案

Git报错:Git Pull Failed error: You have not concluded your merge (MERGE_HEAD exists).

热度:62   发布时间:2023-11-13 23:46:04.0

Git Pull Failed error: You have not concluded your merge (MERGE_HEAD exists).

在Git pull的时候遇到下面的错误
这里写图片描述

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

解决:
直接commit,之后再再pull就可以顺利进行。

$ git commit -m 'info'
  相关解决方案