Created as reference for myself
git clone [http URL]
git pull
git status
git add -h (help for options)
git add -u (add modified & remove deleted files--won't add new files) *My favorite
git add -A (won't delete)
git add .
git add "file name"
git commit -m "Type a message here."
git push -u origin master
git reset file (resets file to master)