git fatal: 拒绝合并无关的历史
2020-06-09 本文已影响0人
流浪的企鹅
出现这个错误的原因:本地初始化的项目 与 github 版本不一致, 导致无法提交
解决办法:在pull 时候, 添加–allow-unrelated-histories参数。
git pull origin master --allow-unrelated-histories
出现这个错误的原因:本地初始化的项目 与 github 版本不一致, 导致无法提交
解决办法:在pull 时候, 添加–allow-unrelated-histories参数。
git pull origin master --allow-unrelated-histories