通过Git将应用程序部署到Heroku(非快进)

时间:2012-01-23 00:27:28

标签: ruby-on-rails-3 git heroku localhost staging

我已经设置了对Heroku的远程访问,因此我可以使用commang将我的应用程序部署到Heroku git push staging master。我不知道崩溃了什么,但现在当我从前一句话中运行命令时,我得到了错误:

To git@heroku.com:mystagingapp.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'git@heroku.com:staging-app.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.

我不希望任何合并,我只想将我的实际版本的应用程序从localhost转移到Heroku。最简单的方法是什么?

非常感谢。

1 个答案:

答案 0 :(得分:4)

如果您确定只想将本地检查的内容推送到heroku,则可以执行git push -f staging master。这可能会导致从远程仓库中删除提交,因此请小心使用。