I have an app on Heroku that is running old code. I\'ve made a small change and committed the change. I then ran
git push heroku master
I
I'm willing to bet you've forgotten to run git add . followed by git commit -m 'xyz'?
git add .
git commit -m 'xyz'