python - I can't able to push on heroku -
i have app on heroku named floating-river-39482
.and i'm trying deploy app giving command git push heroku master
. got error terminal this
remote: ! no such app sleepy-inlet-36834. fatal: repository 'https://git.heroku.com/sleepy-inlet-36834.git/' not found
in error message name of app sleepy-inlet-36834
.but i'm trying push app floating-river-39482
. don't have app named sleepy-inlet-36834
. how can correct error?
it looks you've somehow got git repository referencing old (or deleted) heroku application.
what can open .git/config
file in project, , switch out https://git.heroku.com/sleepy-inlet-36834.git/
url correct 1 heroku application: https://git.heroku.com/floating-river-39482.git
.
then give go =)
to explain further: heroku works using git setup 'remote'. remotes places can push (or pull) code from. git creates remotes listing them in project's .git/config
file.
Comments
Post a Comment