如何将我的应用程序推送到heroku?

时间:2018-07-06 16:01:16

标签: git heroku

我使用以下内容创建了一个应用程序:

result(i, j) += lhs(i, k) * rhs(k, j);

在这里,我注意到我犯了一些错误,我在中途停止了推送,进入了我的heroku帐户,删除了此应用,然后重新开始:

(env) user:heroku create this-testingapp
(env) user:git add .
(env) user: git commit -m "app"
(env) user:git push heroku master

但是在最后一条命令中,我收到此错误(env) user:heroku create secondattempt (env) user:git add . (env) user:git commit -m "another try" (env) user:git push heroku master

1 个答案:

答案 0 :(得分:0)

您已删除您的应用,但尚未删除/更改遥控器。因此,您需要为新应用设置新的遥控器。 在您的终端中键入此内容,然后尝试再次输入代码。

git remote add heroku https://git.heroku.com/secondattempt.git

编辑:如果要更改远程名称(如果它说已存在远程名称,则可以考虑更改远程名称)

git remote rm heroku  
heroku git:remote -a secondattempt