git删除分支

删除本地分支

git branch -d dev

强制删除本地分支(本地有更新)

git branch -D dev

删除远程分支

git push origin --delete dev

相关推荐