I am new to heroku. I created a very simple rails app, and deployed it to heroku.
how can I commit the changes to git?
This was what I did to update mine.. hope it will work for you
first yo have to run dis command to check modified files
git status
Take note of the modified files (it could be a path or just a file name)
git add <file name or path>
run the above command for all the modified file and then commit
git commit -m "your message"
and now push
git push heroku master
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