phase-0-gps-1
825 git clone https://github.com/berkjon/phase-0-gps-1.git Clone downloads the repository from Github to the local machine
826 ls -- shows contents of a directory
829 git status -- shows git status (files needing to be staged or committed, etc)
830 touch awesome_page.md -- creates a new empty file
833 git add awesome_page.md -- stages the file for commit
834 git commit -m "created new awesome_page.md file" -- commits the new file and adds comment
836 git push origin master -- uploads it to Github
838 pwd -- shows current location on local machine
840 git checkout -b add-command-log -- creates new branch titled "add-command-log" and checks you into it
841 git branch -- shows current branch
=============