github - git push报错

浏览:26日期:2023-09-30

问题描述

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

$ git push origin masterTo 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 dohint: not have locally. This is usually caused by another repository pushinghint: to the same ref. You may want to first integrate the remote changeshint: (e.g., ’git pull ...’) before pushing again.hint: See the ’Note about fast-forwards’ in ’git push --help’ for details.

问题解答

回答1:

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

回答2:

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

回答3:

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

相关文章: