git删除分支

删除本地分支

git branch -D 分支名

删除远程分支

git push origin :分支名

(origin可更换为你的其他远程仓库名)

原文地址:https://www.cnblogs.com/mankii/p/14620763.html