From: Karthik R <karthikr@fastmail.fm>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH][resend] git-svn: Respect GIT_SSH setting
Date: Mon, 17 Aug 2009 18:47:19 -0500 [thread overview]
Message-ID: <4A89EC07.2010402@fastmail.fm> (raw)
In-Reply-To: <7vzl9ykovh.fsf@alter.siamese.dyndns.org>
Junio C Hamano wrote:
> Karthik R <karthikr@fastmail.fm> writes:
>
>
>> +# 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};
>> +}
>> +
>>
>
> Two questions.
>
> - What if a user has SVN_SSH exported _and_ wants to use a different one
> from the one s/he uses for git? Naturally such a user would set both
> environment variables and differently, but this seems to override the
> value in SVN_SSH;
>
Do you mean user wants to use a different one with "git svn ...
svn+ssh://" (than the one with "git clone ssh://") ?
In this case
- defining SVN_SSH, but not GIT_SSH will still work (with this patch,
GIT_SSH overrides)
- but SVN_SSH needs to have \\s.
So unless the user already knew of this quirk, we'll only see unescaped
\s - so it *does* make sense to escape the \s (if the user knew, then
too many escaped \s still work).
> - Can a user have SVN_SSH exported, on MSWin32 or msys, and use svn
> outside git? If so, what does the value of SVN_SSH look like? Does it
> typically have necessary doubling of backslashes already?
>
With subversion for Windows, these \\s are not needed (but doesn't cause
any break). The doubling is something to do with the bash (in msys) I think.
> What I am getting at is, if the patch should look something like this
> instead:
>
> if (! exists $ENV{SVN_SSH}) {
> if (exists $ENV{GIT_SSH}) {
> $ENV{SVN_SSH} = $ENV{GIT_SSH};
> if ($^O eq 'MSWin32' || $^O eq 'msys') {
> $ENV{SVN_SSH} =~ s/\\/\\\\/g;
> }
> }
> }
>
>
next prev parent reply other threads:[~2009-08-17 23:47 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-17 23:02 [PATCH][resend] git-svn: Respect GIT_SSH setting Karthik R
2009-08-17 23:20 ` Johannes Schindelin
2009-08-18 4:33 ` Karthik R
2009-08-18 9:52 ` Johannes Schindelin
2009-08-17 23:21 ` Junio C Hamano
2009-08-17 23:47 ` Karthik R [this message]
2009-08-18 5:48 ` Karthik R
2009-08-18 19:25 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A89EC07.2010402@fastmail.fm \
--to=karthikr@fastmail.fm \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox