我的朋友向 heroku 发布了我们的暂存环境,并允许我也发布。但是,我不确定如何设置现有的 heroku 应用程序,以便将我的 dev 分支合并到 staging 中然后发布它?
例如,
$ git remote -v
origin git@github.com:SC/SCTest.git (fetch)
origin git@github.com:SC/SCTest.git (push)
staging git@heroku.com:robot-6850.git (fetch)
staging git@heroku.com:robot-6850.git (push)
$ git branch -v
* master ec8c252 survey finalize
所以,本质上,我想 1)将'staging'远程映射到我的本地分支,2)将我的 dev 分支'origin'合并到'staging'和3)再次发布'staging',但我不确定如何去做这个?有什么想法吗?