使用 Git 时 refusing to merge unrelated histories 解决
原因是两个仓库不同导致,我先是新建了一个仓库,然后 git add remote
了一个 gitee 仓库,接着 git pull
下来,最后往上面直接提交了. 这导致了问题,因为不是直接 git clone
而来的。
先将两个仓库 merge
在一起就可以解决,但遇到了报错,使用 --allow-unrelated-histories
可以消除。
使用 Git 时 refusing to merge unrelated histories 解决
http://example.com/2022/08/31/使用-Git-时-refusing-to-merge-unrelated-histories-解决/