我是靠谱客的博主 丰富菠萝,最近开发中收集的这篇文章主要介绍git出现refusing to merge unrelated histories解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
问题重现
在使用git的时候,如果刚开始本地已经有了仓库,但是并没有和远程仓库关联,这时如果直接设置remote
或者pull
远程仓库代码,在合并的时候会出现refusing to merge unrelated histories
提示。
操作步骤
首先在已有的本地文件夹初始化git:
git init
然后设置远程仓库地址:
git remote add origin http://github.com/your.git
拉取远程仓库
git fetch origin
合并仓库
git merge origin/master
fatal: refusing to merge unrelated histories
这时就报错了,提示我们没有合并关联的历史记录
解决方案
在拉取远程仓库的时候使用--allow-unrelated-histories
就可以了
git pull origin master --allow-unrelated-histories
最后
以上就是丰富菠萝为你收集整理的git出现refusing to merge unrelated histories解决方案的全部内容,希望文章能够帮你解决git出现refusing to merge unrelated histories解决方案所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复