扎马步
地图开发
项目
外观
原文地址
当你远程仓库已经没有分支了,而你本地还显示对应的远程分支时怎么刷新? | GitHub
使用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