On Mar 31, 2009, at 1:37 PM, Brian Armstrong wrote: > Hey guys, I tried creating a test app, and got an auto-generated name > for it. After this I realized I could pick a name, so I destroyed the > original and created a new one with a name I chose. > > For some reason it is still looking for the old name. Ideas? > > Macintosh:TestApp barmstrong$ heroku create > Created http://stark-waterfall-66.heroku.com/ | [email protected]:stark- > waterfall-66.git > Macintosh:TestApp barmstrong$ heroku destroy --app stark-waterfall-66 > Permanently destroy http://stark-waterfall-66.heroku.com/ (y/n)? y > Destroyed stark-waterfall-66 > Macintosh:TestApp barmstrong$ > Macintosh:TestApp barmstrong$ heroku create barmstrong > Created http://barmstrong.heroku.com/ | [email protected]:barmstrong.git > Macintosh:TestApp barmstrong$ git push heroku master > No such app as stark-waterfall-66 > fatal: The remote end hung up unexpectedly > Macintosh:TestApp barmstrong$ heroku info > App not found > Macintosh:TestApp barmstrong$ heroku rename barmstrong > App not found > Macintosh:TestApp barmstrong$
I think this is actually a git problem. Run 'git remote -v' and you should see that the remote called 'heroku' is still hooked up to the old repository URL. I find the easiest way to correct this is just to edit .git/config. Of course, you can also use 'git remote rm heroku; git remote add heroku [email protected] :barmstrong.git' -Mat --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
