赞
踩
1、查看当前所有的本地分支列表,确认需要删除的分支名称。 git branch -a 2、切换到其他分支(非要删除的分支)上,避免在删除时处于被删除的分支上。 git checkout other_branch 3、通过以下命令来删除指定的本地分支 git branch -d branch_name