All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] parsecvs: produce tagger fields acceptable to newer git versions
@ 2009-01-19 12:02 Lennert Buytenhek
  2009-01-19 12:44 ` Jim Meyering
  0 siblings, 1 reply; 3+ messages in thread
From: Lennert Buytenhek @ 2009-01-19 12:02 UTC (permalink / raw)
  To: keithp; +Cc: git, jay, jim, kedars

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>

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);

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-01-19 13:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-19 12:02 [PATCH] parsecvs: produce tagger fields acceptable to newer git versions Lennert Buytenhek
2009-01-19 12:44 ` Jim Meyering
2009-01-19 13:39   ` Lennert Buytenhek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.