[Git] タグの詳細を確認する

タグの詳細を表示する

git show [タグ名] と打つだけでタグをつけたコミットの詳細を表示することができます。

$ git show v1.0.1
commit 34dd42238d58dfcece4a1a78a4ca6145c6f38725
Author: Makito Katsube <katsubemakito@gmail.com>
Date:   Mon Apr 11 12:21:14 2016 +0900

    4th commit.

diff --git a/hello.txt b/hello.txt
index a042389..25c2c9e 100644
--- a/hello.txt
+++ b/hello.txt
@@ -1 +1 @@
-hello world!
+hello world!!

軽量タグと注釈付きタグで表示内容が異なる

タグを作成する際には「軽量タグ」と「注釈付きのタグ」のどちらかで追加していると思います。軽量タグは単にコミットした時の情報が表示されるだけですが、注釈付きのタグではタグの作成者や作成日時、もちろん注釈内容なども表示されます。

以下は注釈付きタグを表示した時のものです。

$ git show v2.0.1
tag v2.0.0
Tagger: Makito Katsube <katsubemakito@gmail.com>
Date:   Tue Apr 12 19:16:52 2016 +0900

major verup. (注釈)

commit 34dd42238d58dfcece4a1a78a4ca6145c6f38725
Author: Makito Katsube <katsubemakito@gmail.com>
Date:   Mon Apr 11 12:21:14 2016 +0900

    5th commit. (コミット時のコメント)

diff --git a/hello.txt b/hello.txt
index a042389..25c2c9e 100644
--- a/hello.txt
+++ b/hello.txt
@@ -1 +1 @@
-hello world!
+hello world!!

参考