git push报错

之前在gitHub上弄好了SSH并成功推送过一次,今天推送的时候报错

$ git push origin master
To git@github.com:ZhuYutao/learngit.git
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'git@github.com:ZhuYutao/learngit.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 --help' for details.
阅读 4.8k
3 个回答

错误信息中有原因。
在你这次push之前,有其他人push到了服务器上。你本地不是最新的。
你需要先git pull一下,然后在push。

楼上是一个解决办法,还可以强制提交

在每次提交的时候还是git pull 再git push 这个是习惯吧 否则会出现上述情况

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进