- Simply listing the available tags in Git is very straightforward. Just type ‘git tag’.
$ git tag
0.1
1.3
- Creating tags
$ git tag -a v1.4 -m 'version 1.4'
$ git tag
v0.1
v1.3
v1.4
- Push tags
git push origin --tags
If you have a tag named '12345' then you would just do this:
git tag -d 12345
git push origin :refs/tags/12345