To [email protected]:xxx/xxxxx.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to '[email protected]:xxx/xxxxx.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes before pushing again.  See the 'Note about
fast-forwards' section of 'git push --help' for details.

当我尝试进行一些更改时出现此错误。当我尝试从 repo 中获取时
From github.com:xxx/xxxxx
 * branch            master     -> FETCH_HEAD

我应该怎么做才能解决这个问题?到目前为止,基本上只不过是我在 repo 中,我只被别人推了两次。我需要进行适当的 merge 吗?

最佳答案

推送失败,因为您的引用落后于远程存储库的引用。提取操作仅降低远程存储库的内容和引用,而不会将您的引用更新为更改。因此,它无法解决阻止推送的问题。您需要执行 pull 操作或与远程引用的本地版本进行手动 merge 。

关于git - 拒绝git push,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3945080/

10-13 07:35