Reputation: 15
Im hosting my fb tab pages on heroku. Newbie in git command. I have modified my index.php, do I have to "git add" the file again to update my file in the repository? Also, how do I add bulk files. I have images, can I do bulk "git add" how. Thanks much. Tried google but no luck.
Upvotes: 1
Views: 6078
Reputation: 3999
If you want to commit all the files you have changed you can use
git add .
git commit -m "put your message here"
and then push to your heroku git repository.
I'd suggest you to pick up some basic facts about git, you can find an excellent guide here: http://try.github.io/levels/1/challenges/1
Upvotes: 3