我使用heroku create test-app3
. 现在,如果我想将一些代码推送到这个新test-app3
的,我该怎么做?
当我heroku list
在终端中输入时,我得到:我的应用程序
test-app1
test-app2
test-app3
如何推送到 test-app3?如何在推送到哪个应用程序之间切换?
我使用heroku create test-app3
. 现在,如果我想将一些代码推送到这个新test-app3
的,我该怎么做?
当我heroku list
在终端中输入时,我得到:我的应用程序
test-app1
test-app2
test-app3
如何推送到 test-app3?如何在推送到哪个应用程序之间切换?
您需要在 Heroku 为每个应用程序设置不同的 git 远程端点,以便您可以从一个本地存储库推送到任一应用程序。
通过仪表板在 Heroku 上获取您的应用程序的 GIT URL(它看起来类似于:)git@heroku.com:your_app_name.git
并执行以下操作:
git remote add test-app1 git@heroku.com:test-app1.git
git remote add test-app2 git@heroku.com:test-app2.git
git remote add test-app3 git@heroku.com:test-app3.git
然后,您将能够推送到任何特定的应用程序,如下所示:
git push test-app1 master
git push test-app2 master
git push test-app3 master