美文网首页Android开发经验谈
Git Pull Failed: refusing to mer

Git Pull Failed: refusing to mer

作者: haegyeong | 来源:发表于2019-07-13 12:03 被阅读4次

今天创建新项目,提交到远程仓库,git 提示以下异常:

Git Pull Failed: refusing to merge unrelated histories

原因:

本地仓库和远程仓库实际上是独立的两个仓库,如果是先创建远程库,再提交本地的仓库到远程库,就会容易出现这个问题。一般都是远程仓库添加readMe.md 或者其他新增的文件导致。

解决方法:

git pull origin master --allow-unrelated-histories 

相关文章

网友评论

    本文标题:Git Pull Failed: refusing to mer

    本文链接:https://www.haomeiwen.com/subject/oyvpkctx.html