3

我有 2 个分支:开发,some_other_name。我已经将作为开发子分支的 some_other_name 分支推送到 heroku,我测试了我的代码然后切换到开发,在 dev 分支中做了一些代码更改,但是当我尝试将它推送到 heroku 时,我得到了下一个:

To git@myapp.git
 ! [rejected]        development -> master (non-fast-forward)
error: failed to push some refs to 'git@myapp.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and merge the remote changes
hint: (e.g. 'git pull') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

这意味着我必须将我的 some_other_name 分支合并到开发中。有没有办法不合并这些分支,而只推动开发?

4

2 回答 2

7

是的,你可以--force在推送到 heroku 时使用 option 来完成。

$ git push -f heroku development:master

于 2013-02-25T11:03:39.907 回答
0

Heroku 推荐的方法是使用命令的 localbranch:master 格式:

git push heroku-staging develop:master

--force可能有效,但也很危险。

于 2014-10-17T12:28:34.430 回答