Initialize new repository
git init
Get a copy of a repository from github etc..
fork and copy link.
git clone
create a new branch and switch to it
git checkout -b “new branch name”
List recent changes
git log
Check for changed files
git status
Stage files
git add .
git add “filename”
commit files with message
git commit -m “message”
push to remote repository
git push origin master
Switch to other branch
git checkout “branchname”