Tags, create, modify, delete
###How to delete a tag from a remote Git repository.
If you have a tag named '12345' then you would just do this:
$ git tag -d 12345 #this delete the tag
$ git push origin :refs/tags/12345
posted by: Guillermo
###Push a tag to a remote repository
$ git push origin tagname
posted by: Guillermo
###Create an anotated tag
$ git tag -a tagname -m 'description'
posted by: Guillermo