赞
踩
问题:
在使用git的时候,如果刚开始本地已经有了仓库,但是并没有和远程仓库关联,这时如果直接设置
remote
或者pull
远程仓库代码,在合并的时候会出现refusing to merge unrelated histories
提示。或者在使用IDE提交或者拉取远程文件提示拉取失败的时候
之前的操作步骤是
- # 首先在已有的本地文件夹初始化git:
- git init
-
- # 然后设置远程仓库地址:
- git remote add origin https://gitee.com/xxx (xxx代表的是你的仓库地址)
-
- # 拉取远程仓库
- git fetch origin
-
- # 合并仓库
- git merge origin/master
- fatal: refusing to merge unrelated histories
如果此时提示报错的话
git pull origin master --allow-unrelated-histories
这个时候问题基本就可以得到解决了,如果对你有帮助,记得点赞赛
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。