heyylateef
heyylateef

Reputation: 76

git push heroku master error, fatal repository

Got an error when trying to deploy a django web app to heroku using the command

    $ git push heroku master

Here is the error given after I type that command:

    mysite lateefa$ git push heroku master
    remote: !   No such app as vast-spire-40247.
    fatal: repository 'https://git.heroku.com/vast-spire-40247.git/' not found

Any suggestions on how to fix this issue?

Upvotes: 0

Views: 2578

Answers (1)

Roshan
Roshan

Reputation: 915

Add the remote url.

git remote add heroku [email protected]:vast-spire-40247.git

Upvotes: 1

Related Questions