getting started (not) with Heroku: App not found
heroku, ruby-on-rails-3
Solution
You need to remove the heroku remote in `git` using this command:
git remote rm heroku
Then you can add a new remote using this one:
git remote add heroku git@heroku.com:your-app.git
Then try running your `heroku` commands.
Problem
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...