git init <目錄>
git clone <repo>
git config user.name <name>
git add <目錄>
git commit -m "message"
git status
git log
git diff
git revert <commit>
git reset <file>
git clean -n
git commit --amend
git rebash <base>
git reflog
git branch
git checkout -b <branch>
git merge <branch>