R's Workshop

Display Git Tagging Message

Git 的 tag 分為 annotated tag 和 lightweight tag 兩類, 但只有 annotated tag 有 tagging message.

Display Tagging Message

顯示 Tagging message

git show [TAG_NAME]

如果是 lightweight tag, 則會顯示 tag 指向的 commit 的 commit message.

Reference

Git