搜索

首页  >  问答  >  正文

github - 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.
迷茫迷茫2796 天前593

全部回复(3)我来回复

  • 给我你的怀抱

    给我你的怀抱2017-05-02 09:31:44

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

    回复
    0
  • 给我你的怀抱

    给我你的怀抱2017-05-02 09:31:44

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

    回复
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-02 09:31:44

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

    回复
    0
  • 取消回复