renamed heroku app from website, now it's not found

Try to update the git remote for the app:

git remote rm heroku
git remote add heroku [email protected]:yourappname.git

The Answer by James Ward is also correct, alternatively try doing this:

1). open a terminal

2). Go to your_app_directory/.git/config

3). Once you open the config file then edit as follows:

Change

url = [email protected]:old_app_name.git

to

url = [email protected]:new_app_name.git

Obviously substituting your apps old name to its new name. Hope it helps Also checkout this link renaming from cli - heroku


git remote rm heroku
heroku git:remote -a newname

Tags:

Git

Heroku