views:

32

answers:

2

Is there something like "git show tags"?

+1  A: 
git tag -l
git tag

-l <pattern>

List tags with names that match the given pattern (or all if no pattern is given).
Typing "git tag" without arguments, also lists all tags

See also GitHub tagging.

VonC
+3  A: 

Type "git tag" or "git tag -l". If you use the -l option, you can pass a search pattern to filter out tags.

Thanks (also to @VonC), I also found that "git describe --tags" will show the last used tag.
marko