This should be simple, and I swear it was working an hour ago. I can log in to Heroku, but can’t run any useful commands:
$ heroku login
Enter your Heroku credentials.
Email: xxx@whatever.com
Password:
$ heroku stack
App not found
$ heroku config
App not found
Perhaps this is the source of the problem?
$ git remote show heroku
! No such app as empty-samurai-345
fatal: The remote end hung up unexpectedly
empty-samuri-345 was an app I deleted earlier. All I really want to do is upload a new app using the bamboo-mri-1.9.2 stack.
Thanks in advance for suggestions…
You need to remove the heroku remote in
gitusing this command:Then you can add a new remote using this one:
Then try running your
herokucommands.