1. 显示本地版本库中所有的本地分支名称
git branch
2. 创建本地分支
git branch new_branch_name
3. 分支改名
git branch -m old_branch_name new_branch_name
4. 删除本地分支
git branch -d branch_name
5. 删除远程分支
git push origin --delete remote_branch_name(remotes/origin/remote_branch_name)