We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
使用git ls-remote --heads origin查看当前远程关联的分支情况
git ls-remote --heads origin
若里面已经没有已删除的分支,则使用git fetch --all获取最新
git fetch --all
再使用git remote prune origin清除本地已删除的远程分支的引用
git remote prune origin
最后再git branch --all,发现已经没有了,大功告成!
git branch --all