git clone ...
git init ...
git status
git add ...
git commit ...
git commit --amend
git log
git remote -v
git remote add ...
git fetch
git push
git pull
git branch -av
git branch
git checkout
git branch -d
git reset --hard HEAD^
git reset --soft HEAD^
git reset --hard <commit>
git reset <commit>
git reset --keep <commit>
git stash
git push origin master -f
git stash pop
……