错误:Error merging: fatal: You have not concluded your merge (MERGE_HEAD exists).

Error merging: fatal: You have not concluded your merge (MERGE_HEAD exists).


解决方案1:保留你本地的修改(推荐)

git merge --abort

git reset --merge

合并后记得一定要提交这个本地的合并

然后在获取线上仓库

git pull

Error merging: fatal: You have not concluded your merge (MERGE_HEAD exists).


解决方案2:down下线上代码版本,抛弃本地的修改

git fetch --all

git reset --hard origin/master

git fetch

解决方案3:删除分支,重新clone

相关文章:

  • 2021-11-25
  • 2021-11-27
  • 2021-07-10
  • 2022-12-23
  • 2021-08-04
  • 2021-08-16
  • 2022-02-19
  • 2022-12-23
猜你喜欢
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
  • 2022-01-22
  • 2021-07-03
  • 2021-11-06
  • 2022-12-23
相关资源
相似解决方案