查看本地分支
git branch --list
删除本地分支,批量
git branch -d `git branch --list`
强制删本地:git branch -D 分支名
删除远程分支:git push origin --delete 分支名(remotes/origin/分支名)
远程分支已删除,vscode还有记录,修剪远程分支:git remote prune origin
查看本地分支
git branch --list
删除本地分支,批量
git branch -d `git branch --list`
强制删本地:git branch -D 分支名
删除远程分支:git push origin --delete 分支名(remotes/origin/分支名)
远程分支已删除,vscode还有记录,修剪远程分支:git remote prune origin