其他分享
首页 > 其他分享> > [Bug0016] Git报错 fatal: refusing to merge unrelated histories

[Bug0016] Git报错 fatal: refusing to merge unrelated histories

作者:互联网

1、问题

fatal: refusing to merge unrelated histories

2、场景

合并其他分支到主分支

3、原因

两个分支是两个不同的版本,具有不同的提交历史,所以报错。

4、解决方案

允许不相关历史提交,强制合并,代码如下:

git pull origin master --allow-unrelated-histories

标签:Bug0016,Git,histories,refusing,merge,unrelated,报错,fatal
来源: https://www.cnblogs.com/Code-Rain/p/16359772.html