本文主要是介绍error: failed to push some refs to 'git@github.com:,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
标签: git
2016-05-20 16:41 381人阅读 收藏 举报
$ git push -u origin master
To git@github.com:xxx/xxx.git! [rejected] master -> master (fetch first)
error: failed to push some refs to 'git@github.com:xxx/xxx.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push
原因:
GitHub远程仓库中的README.md文件不在本地仓库中。
解决方案:
$ git pull --rebase origin master
$ git push -u origin master
参考:
http://blog.csdn.net/u011471873/article/details/51462871
这篇关于error: failed to push some refs to 'git@github.com:的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!