git clone "Creates the repo on the local computer from GitHub"
touch "creates new file"
git add "stages untracked/modified files"
git checkout -b [new branc name] "create new branch and switches"
git commit -m "message" "takes a snapshot of created/modified file"
git push origin master "pushes committed files to GitHub"
git status "displays status untracked/modified files"