Pretty-print tagger dates.
authorJunio C Hamano <junkio@cox.net>
Thu, 2 Mar 2006 00:43:19 +0000 (16:43 -0800)
committerJunio C Hamano <junkio@cox.net>
Thu, 2 Mar 2006 01:06:20 +0000 (17:06 -0800)
commita0f15fa502d4451a1d0041a431f43ff5519536dd
treead606c2ff5a67aad86f8e43fb43632cea77ad416
parente1a0c8b1483b38d32d3870408e03a6c1b340aa15
Pretty-print tagger dates.

We can show commit objects with human readable dates using
various --pretty options, but there was no way to do so with
tags.  This introduces two such ways:

$ git-cat-file -p v1.2.3

shows the tag object with tagger dates in human readable format.

$ git-verify-tag --verbose v1.2.3

uses it to show the contents of the tag object as well as doing
GPG verification.

Signed-off-by: Junio C Hamano <junkio@cox.net>
cat-file.c
git-verify-tag.sh