删除远程分支:

$ git branch -r -d origin/branch-name
$ git push orign :branch-name

删除远程tag

$ git tag -d tag_name
$ git push origin :refs/tags/tag_name