git init
git add ...files
git commit -m "commit message"
git branch
git branch <new_branch_name>
git checkout -b <new_branch_name>
git checkout <branch_name>
git checkout tag/<tag>
git reset
git log
git log --graph --oneline
git diff
git status
git fetch