查看项目的分支们(包括本地和远程)
命令行 : git branch -a
删除本地分支命令行 : git branch -D 分支名
删除远程分支命令行 : git push origin --delete 分支名
查看删除后分支们命令行 : git branch -a