GIT FOR DUMMIES:
git init = initialize project to use git
git add. = add all changes to be saved
git add *filename* = add single file to be saved
git commit -m "message" = savechanges with message
git push origin master = push changes to github master
git push origin new-branch = push changes to github new-branch
git pull origin master = pull changes from github master
git checkout -b new-branch = create a new branch
git status = check status of changes
git log = see all previous saved changes
git checkout *commit hash* = traver back to old commit