or optionally (for posterity of a stickied thread):
git add -A
git commit -m 'added awesome new feature'
git push -u origin master
Explanations for
-A and
-u. Generally only use -A if all the modifications to be committed are a single bundle of functionality, describable by the same commit message.