Git出现的报错合集

Git: fatal: refusing to merge unrelated histories解决

今天git pull时出现这个错误(在连接远程库与本地库时在远程库上进行了一些删除操作)。原因是两个分支为两个不同的版本,有不同的提交历史,使用以下语句进行强制合并即可解决这个问题。

1
$git pull origin master --allow-unrelated-histories

fatal: remote origin already exists

先将存在的库删除,再进行连接

1
git remote rm origin

non-fast-forward

没有对代码进行及时的同步产生的问题,应该先合并之前的历史,再进行提交

1
2
git fetch origin master
git merge origin FETCH_HEAD
Donate
  • Copyright: Copyright is owned by the author. For commercial reprints, please contact the author for authorization. For non-commercial reprints, please indicate the source.
  • Copyrights © 2019-2021 子夜
  • Visitors: | Views:

请我喝杯咖啡吧~

支付宝
微信