Hi, On Mon, 17 Aug 2009, Karthik R wrote: > Setting GIT_SSH when using "git svn clone svn+ssh://..." does not > override the default ssh; SVN_SSH needed to be set instead. This is now in past tense, no? > diff --git a/git-svn.perl b/git-svn.perl > index b0bfb74..9bc1e71 100755 > --- a/git-svn.perl > +++ b/git-svn.perl > @@ -21,6 +21,13 @@ $Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn'; > $Git::SVN::Ra::_log_window_size = 100; > $Git::SVN::_minimize_url = 'unset'; > > +# If GIT_SSH is set, also set SVN_SSH... > +$ENV{SVN_SSH} = $ENV{GIT_SSH} if defined $ENV{GIT_SSH}; > +# ... and escape \s in shell-variable on Windows > +if ($^O eq 'MSWin32' || $^O eq 'msys') { > + $ENV{SVN_SSH} =~ s/\\/\\\\/g if defined $ENV{SVN_SSH}; > +} This is a change from before... I do not know if it is a good one, as SVN_SSH could be defined differently by the user, no? In that case, the user was most likely using the correct amount of backslashes... So maybe it was correct to make this dependent on "if defined $ENV{GIT_SSH}", and maybe it should be dependent on "&& !defined $ENV{SVN_SSH}" as well... Ciao, Dscho -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html