From: Petr Baudis Date: Mon, 16 Oct 2006 01:00:37 +0000 (+0200) Subject: svnimport: Fix broken tags being generated X-Git-Tag: v1.4.3~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b32db4d0faec35ad8e6af35c54c37036b3d6c02f;p=git.git svnimport: Fix broken tags being generated Currently git-svnimport generates broken tags missing the timespec in the 'tagger' line. This is a random stab at a minimal fix. Signed-off-by: Petr Baudis Signed-off-by: Junio C Hamano --- diff --git a/git-svnimport.perl b/git-svnimport.perl index 988514e29..aca0e4f64 100755 --- a/git-svnimport.perl +++ b/git-svnimport.perl @@ -838,7 +838,7 @@ sub commit { print $out ("object $cid\n". "type commit\n". "tag $dest\n". - "tagger $committer_name <$committer_email>\n") and + "tagger $committer_name <$committer_email> 0 +0000\n") and close($out) or die "Cannot create tag object $dest: $!\n";