git pull 报错

Posted whm-blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git pull 报错相关的知识,希望对你有一定的参考价值。

问题:

1、本地初始化了git仓库,放了一些文件进去并进行了add操作和commit提交操作;

2、github创建了git仓库并建立了README,.gitignore等文件;

3、本地仓库添加了github上的git仓库作为远程仓库,起名origin;

      git remote add origin 远程仓库地址

4,本地仓库也远程仓库关联

git branch --set-upstream-to=origin/master master
这个时候就出现了

 

解决问题:

如果直接pull,就会出现  

refusing to merge unrelated histories
的错误,正确姿势:

git pull origin master --allow-unrelated-histories
然后本地远程仓库关联

git branch --set-upstream-to=origin/master master
最后就可以push了;

总结一下:本地仓库有文件,远程仓库也有文件,正确姿势:

1,git remote add origin 远程仓库地址

2,git pull origin master --allow-unrelated-histories

3,git branch --set-upstream-to=origin/master master

4,git push

以上是关于git pull 报错的主要内容,如果未能解决你的问题,请参考以下文章

git pull冲突报错

git pull 报错

解决git pull报错的方法

git pull 报错: Pulling 1 repository Checkout conflict with files

eclipse中使用pull报错(git提交冲突)

git pull 报错 error: cannot pull with rebase: Your index contains uncommitted changes.