解决git中fatal: refusing to merge unrelated histories
主要在 pull push merge
refusing to merge unrelated histories
```
### 加上 pull merge
```
git pull origin master --allow-unrelated-histories
git merge main --allow-unrelated-histories
```
本文来自博客园,作者:vx_guanchaoguo0,转载请注明原文链接:https://www.cnblogs.com/guanchaoguo/p/18000923