把不同的分支推到Heroku

刚刚完成我的other分支的工作。 现在我需要testing,这与Heroku的工作之前,我与master分支合并。

是否有可能将other分支推向Heroku,并将master分支中最后一个推送的内容replace掉?

是的,推到一个不同的分支,你可以使用下面的语法:

 git push heroku other:master 

这告诉Git将你的other分支的内容推送到heroku远程master分支。 请记住,如果在你的other分支上有提交的heroku/master ,你可能不得不强制推送。

有关更多信息,请参阅 git push<refspec>选项的文档 。