$ git status //See the current tracked files
$ git add . //Add all of the files into a "tracked" state
$ git commit -m "something" //Add all of the "tracked" files into the commit and add a message
$ git push //Push all of the files into the repo