在拉动之前不能推入github。是因为我之前通过github网站更改了我的代码吗?

时间:2015-08-23 11:19:13

标签: github

我无法推向github。我想我以前通过github网站对我的代码进行了更改,现在它在我git push origin master时给了我一个提示:

    ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/hrvoojex/telecom-toplist.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

我必须这样做:

git pull origin master 

之后我将能够做到:

git push origin master

我在我的代码中做了很多更改,因此我不想在上次提交之前丢失我的工作。

1 个答案:

答案 0 :(得分:2)

基本上你有两个解决方案:

  1. 如果您的本地副本是好的,您可能想要覆盖远程工作。你可以通过简单的推力来做到这一点。
  2. git push -f origin master

    1. 如果您想要进行这两项更改,则可以远程工作合并到本地工作,然后推送结果。在这种情况下,建议的命令是可行的方法。