heroku not updating after I git push heroku not updating after I git push heroku heroku

heroku not updating after I git push


Deleting the default Rails homepage isn't enough, you have to instruct git to remove all deleted files. This is the command I use:

git add .git commit -am "save all changed files & remove deleted ones"git push heroku master

Other commands that should work:

git add . -Agit commit -m "..."git add -ugit commit -m "..."

Note that if you delete files before doing any commits then git can't add them.