码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-07-19 12:01:21      阅读:617      评论:0      收藏:0      [点我收藏+]

标签:根据   ror   链接   har   clu   合并   int   count   error   

Git fetch和git pull的区别, 解决Git报错:error: You have not concluded your merge (MERGE_HEAD exists).

Git fetch和git pull的区别:

都可以从远程获取最新版本到本地

1.Git fetch:只是从远程获取最新版本到本地,不会merge(合并)

$:git fetch origin master   //从远程的origin的master主分支上获取最新版本到origin/master分支上
$:git log -p master..origin/master //比较本地的master分支和origin/master分支的区别
$:git merge origin/master          //合并
  • 1
  • 2
  • 3

2.Git fetch:从远程获取最新版本并merge(合并)到本地

$:git pull origin master  //相当于进行了 git fetch 和 git merge两部操作
  • 1

实际工作中,可能git fetch更好一些, 因为在merge前,可以根据实际情况决定是否merge


再说导致报错:error: You have not concluded your merge (MERGE_HEAD exists).的原因可能是在以前pull下来的代码自动合并失败

解决办法一:保留本地的更改,中止合并->重新合并->重新拉取

$:git merge --abort
$:git reset --merge
$:git pull
  • 1
  • 2
  • 3

解决办法二:舍弃本地代码,远端版本覆盖本地版本(慎重)

$:git fetch --all
$:git reset --hard origin/master
$:git fetch
  • 1
  • 2
  • 3

 

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

标签:根据   ror   链接   har   clu   合并   int   count   error   

原文地址:https://www.cnblogs.com/whowhere/p/9334793.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!