diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/git2svn.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/git2svn.pl b/tools/git2svn.pl index c90ea96e..afe2b3b3 100755 --- a/tools/git2svn.pl +++ b/tools/git2svn.pl @@ -114,8 +114,8 @@ if (@commits == 0) { # Finally, commit every revision found into SVN foreach my $commit (@commits) { print "Commiting $commit to Subversion\n"; - print "Running: $git svn set-tree $commit\n" if ($DEBUG); - `$git svn set-tree $commit`; + print "Running: $git svn set-tree --add-author-from $commit\n" if ($DEBUG); + `$git svn set-tree --add-author-from $commit`; die("Failed to commit hash $commit") if ($?); } |