// 删除本地分支
git branch -d localBranchName
 
// 删除远程分支
git push origin --delete remoteBranchName
 
// 精简分支, 不会显示已远程被删除的分支
git fetch -p