PikaRules
6/14/2015 - 11:54 PM

Tags, create, modify, delete

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