GPS 1.1 pairing
git clone https://github.com/bvirk1357/phase-0-gps-1.git --> Clones the remote repo into local dir
touch awesome_page.md --> Creates an empty file.
git add awesome_page.md --> Adds the new file to the git control
git branch --> Checks the current branches
git commit -m "Awesome file added" --> Creates the message and creates the snapshot of changes.
git push --> Pushing the changes to remote.
git checkout -b add-command-log --> Checks out the new branch 'add-command-log' and takes us there