如何从命令行删除远程分支(例如Github)?

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

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

  • 与每个git服务器一样:

    $ git push github :<BRANCH_NAME>
    

    要么:

    $ git push github --delete <BRANCH_NAME>
    

    例:

    $ git push github --delete test
    

    本地分支

    git branch -d local_branch
    

    远程分支

    git push origin --delete remote_branch
    

    使用此命令:

    git push github :test
    

    阅读“在github远程上不会推送refname test

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

    上一篇: How to delete remote branch (e.g. Github) from command line?

    下一篇: Running shell commands from a specific directory