完全删除裁判/遥控器

这个问题在这里已经有了答案:

  • 如何在本地和远程删除Git分支? 39个答案

  • 你可以通过推空引用来完成,所以:

    git push origin :BranchA :master
    

    会做的伎俩。 如果你使用'git fetch --prune origin',那么它们也不会在'git branch -a'中出现。


    最简单的答案,我发现在SO本身,它的工作就像一个魅力。

    git push repository:refs / remotes / origin / BranchA

    git push repository:refs / remotes / origin / master

    链接地址: http://www.djcxy.com/p/659.html

    上一篇: Remove refs/remotes entirely

    下一篇: Locally deleted branch is not deleted on remote repository