git 删除分支

1、删除本地分支

git branch -d branchName

2、删除远程分支

git push origin --delete branchName
原文地址:https://www.cnblogs.com/kingsonfu/p/9840485.html