git删除远程分支

删除远程分支命令 
$ git push origin :remote_branch 
或者 
$ git push origin --delete remote_branch

原文地址:https://www.cnblogs.com/mkxzy/p/7802649.html