How to delete remote branch (e.g. Github) from command line?
本问题已经有最佳答案,请猛点这里访问。
我在本地计算机中有一个Git存储库:
我添加了一个名为
然后我签出到
Deleted remote-tracking branch github/buggy (was acc5a58).
我在问是否有办法从命令行中删除github服务器上的
本地分支
1 | git branch -d local_branch |
远程分支
1 | git push origin --delete remote_branch |
与每个
1 | $ git push github :<BRANCH_NAME> |
或:
1 | $ git push github --delete <BRANCH_NAME> |
例子:
1 | $ git push github --delete test |
使用此命令:
1 | git push github :test |
读取"在Github远程上不将任何内容作为refname