无法提交我的更改并出现此错误

时间:2018-10-10 19:44:44

标签: git github

提示:由于当前分支的提示位于后面,因此更新被拒绝 提示:它的远程副本。集成远程更改(例如 提示:“ git pull ...”),然后再次按下。 提示:有关详细信息,请参见“ git push --help”中的“关于快进的注意事项”。

1 个答案:

答案 0 :(得分:0)

如果您看到类似的消息REPOSITORY-您的存储库名称和USERNAME,并假设master是当前分支

$ git push origin master
To https://github.com/USERNAME/REPOSITORY.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/USERNAME/REPOSITORY.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again.  See the
'Note about fast-forwards' section of 'git push --help' for details.

然后,您可以执行以下操作:

有人在上一次git fetch和git push之间推送了新的提交。在这种情况下,您需要重复执行步骤,然后再rebase master一次。

git fetch
git rebase master
git push origin master