《Git与Github使用笔记》解决:git push error: failed to push some refs to XXX
Posted Bruceoxl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《Git与Github使用笔记》解决:git push error: failed to push some refs to XXX相关的知识,希望对你有一定的参考价值。
今天使用Git提交代码到gitee仓库,在push的时候,出现以下错误:
【原因分析】
在创建远程仓库是勾选了使用README.md文件进行初始化,本地项目文件夹没有README.md文件。
【解决方法】
先将远程代码库中的任何文件先pull到本地代码库中,才能push新的代码到github代码库中。
第一步:pull:
git pull --rebase origin master
第二步:push:
git push -u origin master
以上是关于《Git与Github使用笔记》解决:git push error: failed to push some refs to XXX的主要内容,如果未能解决你的问题,请参考以下文章
git与github的使用Git最新教程通俗易懂学习——狂神说视频笔记