Git删除分支

来源:互联网 发布:淘宝冰点营销使用教程 编辑:程序博客网 时间:2024/05/22 03:18

一、删除本地分支

git branch -D 'your_local_branch'

二、删除远程分支

git push origin --delete 'your_remote_branch'
原创粉丝点击