git clone <remote directory>
git status
git branch <new branch name>
git checkout -b <new branch name>
git branch -a
git checkout <branch name>
git branch -d <branch name>
git checkout -b <new branch name>
git commit -m 'comment'
pull original file to have latest version of file from github so that you and your team are working with the latest changes
git checkout master git pull origin master
git merge master
git push origin update-cheatsheet
git checkout -b <new branch name>