Heroku push app problem

Viewed 18892

I installed Heroku and set up an account, but for some reason whenever I try to push the app to the site, I get this error.

$ git push heroku master
!  No such app as first_app
fatal: The remote end hung up unexpectedly

I have checked to see that heroku sees the git

$ git remote -v
heroku  git@heroku.com:first_app.git (fetch)
heroku  git@heroku.com:first_app.git (push)

how do I get heroku to recognize my git file?

7 Answers

Try to re-add the remote url.

// Check for the current url 
git remote -v

// remove remote url
git remote rm heroku

// re-add the remote url
git remote add heroku git@heroku.com:boiling-inlet-6951.git
Related