我知道如何列出所有的git标签。但是,如果我想列出它们并打印每个标记的注释呢?
我可以用git自己来做吗,或者我需要一个shell循环来使用git show
我自己使用这个别名,也许可以根据您的需要调整它:
git config --global alias.tl 'git for-each-ref --sort=-authordate --format="%(contents:subject) %(objectname:short) (%(refname:short))" refs/tags'
# then just
git tl
注意它需要注释的标签。