在heroku上找不到存储库

时间:2016-02-01 16:05:55

标签: php git heroku

最初尝试了Heroku(为了学习如何使用它)并部署了一个应用程序,Tastyall。最终进入Heroku删除所有已完成的内容以便重新开始(以下内容)。我的Heroku仪表板在启动以下内容之前没有显示应用程序。

我的桌面上的blackopp文件夹包含我的空composer.json和idex.php测试文件,其中包含说“Hello”的代码。

我的问题:为什么我不能摆脱似乎导致混淆的旧应用信息?这是从哪里来的?我看到它说:rename tastyallphp.php => blackopp.php(100%),但似乎无法理解这一点,因为应该没有“美味......”的任何参考。

$ cd /Users/xxxx/Desktop/blackopp
$ pwd
/Users/xxxx/Desktop/blackopp
$ git init
Reinitialized existing Git repository in /Users/xxxx/Desktop/blackopp/.git/
$ git add .
$ git commit -m "initial commit"
[master bff3b6c] initial commit
Committer: xxxx 
Your name and email address were configured automatically……
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename tastyallphp.php => blackopp.php (100%)
$ heroku create blackopp
Creating blackopp... done, stack is cedar-14
https://blackopp.herokuapp.com/ | https://git.heroku.com/blackopp.git
$ git push heroku master
remote: !   No such app as tastyallapp.
fatal: repository 'https://git.heroku.com/tastyallapp.git/' not found

我想知道是否删除我的整个Heroku帐户并重新开始会更容易,但我想先问问我的问题。

1 个答案:

答案 0 :(得分:0)

应用名称import numpy table = numpy.arr(vals,labels) 将来自存储库配置中tastyallapp远程的定义。这是您heroku时用于确定目的地的内容。

重新开始是一种选择,但如果你想尝试修复它,你可以这样做:

git push heroku master

从旧应用中删除以前的遥控器,然后:

git remote remove heroku

添加与当前应用名称匹配的新遥控器。