From: Alex Vandiver Date: Wed, 6 May 2009 20:19:45 +0000 (-0400) Subject: git-svn: Set svn.authorsfile if it is passed to git svn clone X-Git-Tag: v1.6.4-rc0~149^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=42a5da1806fd6891d4fcc0ad9c0e550c12f75df5;p=git.git git-svn: Set svn.authorsfile if it is passed to git svn clone Signed-off-by: Alex Vandiver Acked-by: Eric Wong --- diff --git a/git-svn.perl b/git-svn.perl index eebcf0f20..e927965ac 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -361,6 +361,7 @@ sub cmd_clone { $path = basename($url) if !defined $path || !length $path; cmd_init($url, $path); Git::SVN::fetch_all($Git::SVN::default_repo_id); + command_oneline('config', 'svn.authorsfile', $_authors) if $_authors; } sub cmd_init {