[PATCH] gitk: pretty print tag objects
From: Sven Marnach <hidden>
Date: 2016-06-15 22:44:26
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Sven Marnach <hidden>
Date: 2016-06-15 22:44:26
Subsystem:
the rest · Maintainer:
Linus Torvalds
Currently, tag objects are shown as the raw tag object contents. By pretty printing them, the time stamp is shown in a more readable format (and this is actually the only difference to the raw format). Signed-off-by: Sven Marnach <redacted> --- gitk-git/gitk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gitk-git/gitk b/gitk-git/gitk
index 84ab02e..4581893 100644
--- a/gitk-git/gitk
+++ b/gitk-git/gitk@@ -7843,7 +7843,7 @@ proc showtag {tag isnew} { set linknum 0 if {![info exists tagcontents($tag)]} { catch { - set tagcontents($tag) [exec git cat-file tag $tagobjid($tag)] + set tagcontents($tag) [exec git cat-file -p $tagobjid($tag)] } } if {[info exists tagcontents($tag)]} {
--
debian.1.5.5_rc2.1