how to update application on heroku
It's just a git push
git push heroku master
You need to perform:
git add .
git commit -m "updated the header and footer"
git push heroku master
I hope this would help. Three steps:
git add .
git commit -m "make changes"
git push heroku master