【git】git 删除本地远程分支报错 remote ref does not exist

问题描述:git 删除本地的远程分支报错,remote ref does not exist。
解决办法:清除远程分支的本地缓存:git fetch -p origin,可以通过 git branch -a 查看,我们要删除的远程分支其实已经删除了

原文地址:https://www.cnblogs.com/GManba/p/13488153.html