To git@github.com:xxx/xxxxx.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@github.com: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.
当我尝试推送一些更改时出现此错误。当我尝试从回购中获取时,我得到了
From github.com:xxx/xxxxx
* branch master -> FETCH_HEAD
我该怎么做才能解决这个问题?到目前为止,基本上只有我在回购中,我只有两次来自其他人。我需要做一个合适的合并吗?
答案 0 :(得分:11)
推送失败,因为你的引用落后于远程存储库的引用。获取操作仅关闭远程存储库的内容和引用,但不会更新您的引用更改。因此,它无法解决阻止推送的问题。您需要执行pull操作或手动合并远程refs的本地版本。