You can delete a branch from remote storage, for example
git push origin :branchname
if you have tags, you can remove them as follows:
git push origin :refs/tags/tagname
It is assumed that you have remote setup before github named origin
This will result in local tags / branches on your computer.
Ceilingfish Mar 19 '11 at 18:27 2011-03-19 18:27
source share