refusing to merge unrelated histories

问题

在执行git pull拉取和git push推送或者是分支合并的操作时,报错refusing to merge unrelated histories

解决

这是因为仓库之间没有建立起关联导致的,需要在命令后面加上 --allow-unrelated-histories
先进行拉取操作避免推送时发送冲突

$git pull origin master --allow-unrelated-histories
1
拉取成功后,进行推送操作

$ git push <远程主机名> <本地分支名>:<远程分支名>
也就是
$git push origin master:master
提交成功

你可能感兴趣的:(gitee)