git 报错fatal: refusing to merge unrelated histories
解决方案
在你操作命令后面加--allow-unrelated-histories
例如:
git merge master --allow-unrelated-histories
git pull
或者git push
报fatal: refusing to merge unrelated histories
同理:
git pull origin master --allow-unrelated-histories