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