Skip to content
Snippets Groups Projects
Commit b32db4d0 authored by Petr Baudis's avatar Petr Baudis Committed by Junio C Hamano
Browse files

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: default avatarPetr Baudis <pasky@suse.cz>
Signed-off-by: default avatarJunio C Hamano <junkio@cox.net>
parent 7cfb5f36
Branches
Tags
No related merge requests found
...@@ -838,7 +838,7 @@ sub commit { ...@@ -838,7 +838,7 @@ sub commit {
print $out ("object $cid\n". print $out ("object $cid\n".
"type commit\n". "type commit\n".
"tag $dest\n". "tag $dest\n".
"tagger $committer_name <$committer_email>\n") and "tagger $committer_name <$committer_email> 0 +0000\n") and
close($out) close($out)
or die "Cannot create tag object $dest: $!\n"; or die "Cannot create tag object $dest: $!\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment