Signed-off-by: Lennert Buytenhek <buytenh@xxxxxxxxxxx> diff --git a/git.c b/git.c index da320d1..8f94d1b 100644 --- a/git.c +++ b/git.c @@ -371,11 +371,13 @@ git_mktag (rev_commit *commit, char *name) "object %s\n" "type commit\n" "tag %s\n" - "tagger %s\n" + "tagger %s <%s> %lu +0000\n" "\n", commit->sha1, name, - author ? author->full : commit->author); + author ? author->full : commit->author, + author ? author->email : commit->author, + commit->date); if (rv < 1) { fprintf (stderr, "%s: %s\n", filename, strerror (errno)); fclose (f); -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html