3

嗨,我尝试将本地更改推送到 heroku 生产,但出现以下错误

Zhens-MacBook-Pro:Dailymuses-Server-Side zaikshev88$ git push heroku-production master:master
To git@heroku.com:dailymuses.git
! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'git@heroku.com:dailymuses.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

这里的问题是,当我尝试执行 git pull 时,我被告知一切都是最新的

Zhens-MacBook-Pro:Dailymuses-Server-Side zaikshev88$ git pull origin master
From github.com:mingyeow/Dailymuses-Server-Side
* branch            master     -> FETCH_HEAD
Already up-to-date.

这里有什么问题,我该如何解决?

4

1 回答 1

10

您的push命令是远程heroku-production,但您的pull命令是远程origin。该non-fast-foward消息意味着您当前存储库中的历史记录与 Heroku 远程不同;可能有人通过一些合并或变基推送了一个分支。

我恳请您不要将 Heroku 用作权威的 git 遥控器。假设你不是,你可以强制推送 Heroku master 分支来解决这个问题。

git push -f heroku-production master:master
于 2013-03-12T20:13:52.097 回答