Version Control System Git Introduction
brew install git
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
mkdir sample-repository
cd sample-repository
git status
git init
git status
touch sample-file.txt
git status
git add sample-file.txt
git commit -m "Add blank sample file"
git status
git log
git remote add origin {url}
git remote -v
git fetch --all
git push origin master
git pull origin master