博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git报错:failed to push some refs to 'git@github.com:JiangXiaoLiang1988/CustomerHandl
阅读量:5310 次
发布时间:2019-06-14

本文共 558 字,大约阅读时间需要 1 分钟。

一、错误信息

今天在使用git将代码上传到GitHub的时候报下面的错误:

以前上传代码的时候重来没有出现这种错误,在网上查找了半天终于找到原因了:github中的README.md文件不在本地代码目录中。以前在GitHub上面创建Repository上传代码的时候没有勾选自动创建README.md文件,所以上传的时候直接就上传成功了。这次在创建Repository的时候勾选了自动创建README.md,所以造成本地Repository和远程的Repository代码不一致,上传的时候就出现截图中的错误了。

注意:在GitHub上面创建Repository的时候在下面的位置创建README.md文件,如下图所示:

二、解决办法

可以通过如下命令进行代码合并【注:pull=fetch+merge]

$ git pull --rebase origin master

 如下图所示:

执行完上面的代码以后查看本地Repository文件,会发现多了README.md文件:

最后在执行下面的代码上传:

$ git push -u origin master

 如图所示:

这时候在上传代码就会成功了。

 

转载于:https://www.cnblogs.com/dotnet261010/p/10848386.html

你可能感兴趣的文章
git pull 拉取更新失败解决方案
查看>>
spring boot学习笔记(一)
查看>>
string长度问题
查看>>
小程序开发入门(一)
查看>>
git提交项目到已有库
查看>>
spring boot学习笔记(二)创建spring boot项目
查看>>
洛谷 P1505 BZOJ 2157 [国家集训队]旅游
查看>>
Codeforces 1213F Unstable String Sort
查看>>
HDU 6651 Final Exam
查看>>
CodeForces 1200D White Lines
查看>>
HDU 6656 Kejin Player
查看>>
Codeforces 1203F1 Complete the Projects (easy version)
查看>>
CodeForces 1200E Compress Words
查看>>
HDU 6669 Game
查看>>
Codeforces 1203F2 Complete the Projects (hard version)
查看>>
Codeforces 1213C Book Reading
查看>>
HDU 6667 Roundgod and Milk Tea
查看>>
Codeforces 1213E Two Small Strings
查看>>
Codeforces 1213D Equalizing by Division
查看>>
Codeforces 1213G Path Queries
查看>>