I make some changes in local files, how can I deploy the new version?
if I type git push heroku master, it’s say everything up to date, but the application wasn’t changed.
I make some changes in local files, how can I deploy the new version?
Share
You probably need to commit your changes first.
Run
git commit -a -m "updated some files"then run
git push....