我本地的仓库是通过git init
创建的,而远程仓库是直接在gitee创建的,所以这两个仓库是不同的仓库所以当push
本地仓库到远程仓库的时候会失败。
解决方法:
# 通过在后面添加以下内容即可忽略这个问题
--allow-unrelated-histories
# 例如:
git pull origin master --allow-unrelated-histories
标签:git,仓库,histories,笔记,--,本地,远程
From: https://www.cnblogs.com/sanmian/p/17445408.html