###Read This http://rogerdudler.github.io/git-guide/
###Only Run First Time
git config --global user.name "BLAH"
git config --global user.email "[email protected]"
git init
###Run Everytime
git add -A
git commit -am "Reason For Commit"
###Only Run First Time
git remote add origin http://yourface/repo.git
###Run Everytime
git push origin master
git config --global user.name "BLAH"
git config --global user.email "[email protected]"