Download and Installation
https://git-scm.com/downloads
Commit
Commit with empty message
git config --global alias.nccommit "commit -a --allow-empty-message -m ''"
git nccommit
Change commit info
git commit --amend --author="Bendy Zhang <zb@bndy.net>" --no-edit
Branch
New branch from remote
git checkout -b localBranch origin/remote_branch
Push changes to new branch
git checkout -b newBranch
git push -u origin newBranch # -u is short for `-set-upstream`
Bind local branch with remote branch
git branch --set-upstream-to=origin/remote_branch your_branch
Remove multiple branches
git branch -d `git branch --list '3.2.*'`
Reset local branch to remote branch
git fetch origin && git reset --hard origin/master
Merge