From: Linus Torvalds Date: Tue, 24 May 2005 17:15:42 +0000 (-0700) Subject: cvs2git: set timezone info to UTC, the way CVS does X-Git-Tag: v0.99.2~51^2~7 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=1db0819a9cb30234678df73a99b82cb96babeca5;p=git.git cvs2git: set timezone info to UTC, the way CVS does This should also mean that the conversion is now completely defined by the CVS tree, and that two people doing a cvs2git conversion on the same base will always get the same results regardless of when or in what timezone they do it. --- diff --git a/cvs2git.c b/cvs2git.c index b63b8bc5..8a76734a 100644 --- a/cvs2git.c +++ b/cvs2git.c @@ -69,11 +69,11 @@ static void prepare_commit(void) printf("export GIT_COMMITTER_NAME=%s\n", author_name); printf("export GIT_COMMITTER_EMAIL=%s\n", author_email); - printf("export GIT_COMMITTER_DATE='%s'\n", date); + printf("export GIT_COMMITTER_DATE='+0000 %s'\n", date); printf("export GIT_AUTHOR_NAME=%s\n", author_name); printf("export GIT_AUTHOR_EMAIL=%s\n", author_email); - printf("export GIT_AUTHOR_DATE='%s'\n", date); + printf("export GIT_AUTHOR_DATE='+0000 %s'\n", date); if (initial_commit) return;