Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question
I had similar symptoms, and it turned out the problem was I was logged into a different Heroku account. – gohnjanotis May 30 '11 at 3:15

2 Answers

up vote 40 down vote accepted

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.

share|improve this answer
1  
Nifty -- thanks. I ended up editing the .git file to remove the heroku entry -- that also seemed to work. – fearless_fool Mar 15 '11 at 22:41
This is documented here: devcenter.heroku.com/articles/… – adam Dec 8 '12 at 18:26
I was having the same problem because I renamed my app. I opened .git/config and change the Heroku repo URL and it fixed the problem. – Jason Swett Jan 16 at 3:51

Run the following

git config -l

The config key is easy to spot, remote.heroku.url.

Now if your comfortable editing the config directly, just:

git config -e

If not:

# Confirm you've got the right key
git config remote.heroku.url
# Substitute your_app_name appropriately
git config remote.heroku.url git@heroku.com:your_app_name.git

My answer is based off fearless_fool's comment, which lacks much detail.

FYI: The config file is located in /your_git_repo/.git/config

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.