我是靠谱客的博主 背后摩托,最近开发中收集的这篇文章主要介绍代码合并Git出现refusing to merge unrelated histories错误,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
问题现象
在main分支合并特性分支feature时,出现提示refusing to merge unrelated histories
, 无法进行合并。
原因是两条分支新建时是不同的源头,导致提交历史是不相关联的,所以被拒绝合并。
解决办法
在合并命令中加上--allow-unrelated-histories
指令即可。
git merge feature --allow-unrelated-histories
在拉取不同仓库之间的代码时也可能出现此问题,解决办法类似,加上--allow-unrelated-histories
指令。
git pull origin dev --allow-unrelated-histories
最后
以上就是背后摩托为你收集整理的代码合并Git出现refusing to merge unrelated histories错误的全部内容,希望文章能够帮你解决代码合并Git出现refusing to merge unrelated histories错误所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复