Skip to content

Commit b32db4d

Browse files
Petr BaudisJunio C Hamano
authored andcommitted
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 <pasky@suse.cz> Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 7cfb5f3 commit b32db4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-svnimport.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ sub commit {
838838
print $out ("object $cid\n".
839839
"type commit\n".
840840
"tag $dest\n".
841-
"tagger $committer_name <$committer_email>\n") and
841+
"tagger $committer_name <$committer_email> 0 +0000\n") and
842842
close($out)
843843
or die "Cannot create tag object $dest: $!\n";
844844

0 commit comments

Comments
 (0)