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

Git提示You have not concluded your merge. (MERGE_HEAD exists)

时间:2020-03-18 11:37:36      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:nbsp   set   fetch   下载   需要   git fetch   保存   html   tail   

Git原理

技术图片

 

git fetch是将远程主机的最新内容拉到本地,用户在检查了以后决定是否合并到工作本机分支中。

git pull 则是将远程主机的最新内容拉下来后直接合并,即:git pull = git fetch + git merge,这样可能会产生冲突,需要手动解决。

解决方案

① 保存本地代码
② 执行git fetch --all,检查有无冲突
③ 执行git reset --hard origin/master ----> git reset 把HEAD指向刚刚下载的最新的版本
④ commit代码
⑤ psh代码


参考:

https://blog.csdn.net/daotiao0199/article/details/82757056

https://www.cnblogs.com/runnerjack/p/9342362.html

Git提示You have not concluded your merge. (MERGE_HEAD exists)

标签:nbsp   set   fetch   下载   需要   git fetch   保存   html   tail   

原文地址:https://www.cnblogs.com/aeolian/p/12516058.html

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