如何使用heroku CLI连接到选定的应用程序

z4bn682m  于 2022-11-13  发布在  其他
关注(0)|答案(3)|浏览(116)

我尝试在Heroku上部署我的Java Web应用程序。当我在制作教程时,我使用 heroku create 命令创建了一个应用程序,假设它是“name-app 1”。然后我在教程后删除它,并创建新的应用程序来部署它,让它成为:“new_app”。但是,当我尝试上传代码时,出现了一个错误,即以前的应用程序“name-app 1”不再存在。当我尝试使用例如heroku日志时,出现以下错误:

»   Error: Missing required flag:
 »     -a, --app APP  app to run command against
 »   See more help with --help

我累了指向我的新应用程序与以下命令:

git remote set-url heroku git@heroku.com:hidden-ridge-8790.git

我想我搞砸了一些事情,不知道如何解决它。

6mw9ycah

6mw9ycah1#

您尝试为heroku设置遥控器的方式不正确。这就是为什么您得到上面的错误。要正确设置遥控器,请使用以下命令

heroku git:remote -a new_app

这会将遥控器设置为新创建的应用new_app
要部署代码,请使用以下命令

git push heroku master

这会将您的代码部署到heroku应用程序

ie3xauqp

ie3xauqp2#

你很接近了,
heroku git:remote -a hidden-ridge-8790
与以下内容相同:
git remote add heroku git@heroku.com:hidden-ridge-8790.git
给予看,如果不起作用,请向我们显示git remote -v的输出,我们可以帮助您解决问题。

hwamh0ep

hwamh0ep3#

试试这个
heroku git:远程-一个你的本地应用程序
Heroku运行轨道C

相关问题