List tags in GIT

List tags in repo

box:product user$ git tag
product-0.3
product-0.4
...
product-1.7
product-1.8

With a little more detail:

box:product user$ git tag -l -n1
product-0.3 [maven-release-plugin]  copy for tag product-0.3
product-0.4 [maven-release-plugin]  copy for tag product-0.4
...
product-1.7 [maven-release-plugin]  copy for tag product-1.7
product-1.8 [maven-release-plugin]  copy for tag product-1.8

With more detail:

box:product user$ for t in `git tag -l`; do git cat-file -p `git rev-parse $t`; done
object 965d40c9c8091c73871761034b78135793368fa0
type commit
tag product-0.3
tagger company <devops@company.com> Mon Oct 7 11:57:00 2013 -0700

[maven-release-plugin]  copy for tag product-0.3
object bff67daf9605abd87adb1122ea4e9081172ab99e
type commit
tag product-0.4
tagger company <devops@company.com> Mon Oct 7 12:26:45 2013 -0700

...
[maven-release-plugin]  copy for tag product-1.7
object 6a9cbd9107c1ea18a9b9b540b19c93a57f0b515d
type commit
tag product-1.8
tagger company <devops@company.com> Tue Dec 3 11:19:43 2013 -0800