How to list all Git tags?

In my repository, I have created tags using the following commands. git tag v1.0.0 -m ‘finally a stable release’ git tag v2.0.0 -m ‘oops, there was still a major bug!’ How do you list all the tags in the repository? 10 s 10 git tag should be enough. See git tag man page You also … Read more

How to delete a remote tag?

How do you delete a Git tag that has already been pushed? 2 26 You can push an ’empty’ reference to the remote tag name: git push origin :tagname Or, more expressively, use the –delete option (or -d if your git version is older than 1.8.0): git push –delete origin tagname Note that git has … Read more