git命令显示所有(轻量级)标签创builddate

是否有一个class轮,显示所有git轻量级标签创builddate?

就像: git show tags --format=date

我在这个链接中find了适合我需求的解决scheme:

 git log --tags --simplify-by-decoration --pretty="format:%ai %d" 

我已经把这个命令放在我的~/.alias的别名中,所以现在每次运行gitshowtagbydate我都会得到我所需要的。

git tag -l显示所有标签的列表。 --format参数可以用来定义一个自定义输出。 例如:

 git tag -l --format='%(refname) %(taggerdate)'