本文主要是介绍删远端分支报错remote refs do not exist或git: refusing to delete the current branch解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
先输入: 在git 命令行终端输入 git fetch -p origin
查看所有分支: git branch -a
然后删除: git push origin -d xxxx
如果报错:git: refusing to delete the current branch
并且当前分支!=删除分支
则时git默认分支==删除分支,导致其一致被占用状态,无法删除,
这篇关于删远端分支报错remote refs do not exist或git: refusing to delete the current branch解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!