* [PATCH] If deriving SVN_SSH from GIT_SSH on msys, also add quotes
@ 2010-01-23 10:22 Sebastian Schuberth
2010-01-23 11:22 ` Sverre Rabbelier
0 siblings, 1 reply; 5+ messages in thread
From: Sebastian Schuberth @ 2010-01-23 10:22 UTC (permalink / raw)
To: git; +Cc: Johannes Schindelin, jugg
In contrast to GIT_SSH, SVN_SSH requires quotes for paths that contain
spaces. As GIT_SSH will not work if it contains quotes, it is save to
assume it never contains quotes. Also, adding quotes to SVN_SSH for paths
that do not contain spaces does no harm. So we always add quotes when
deriving SVN_SSH from GIT_SSH on msys.
This fixes msysGit issue 385, see
http://code.google.com/p/msysgit/issues/detail?id=385
Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
---
git-svn.perl | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/git-svn.perl b/git-svn.perl
index 650c9e5..ef39a9f 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -26,6 +26,7 @@ if (! exists $ENV{SVN_SSH}) {
$ENV{SVN_SSH} = $ENV{GIT_SSH};
if ($^O eq 'msys') {
$ENV{SVN_SSH} =~ s/\\/\\\\/g;
+ $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
}
}
}
--
1.6.6.265.ga0f40
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] If deriving SVN_SSH from GIT_SSH on msys, also add quotes
2010-01-23 10:22 [PATCH] If deriving SVN_SSH from GIT_SSH on msys, also add quotes Sebastian Schuberth
@ 2010-01-23 11:22 ` Sverre Rabbelier
2010-01-23 14:20 ` Sebastian Schuberth
0 siblings, 1 reply; 5+ messages in thread
From: Sverre Rabbelier @ 2010-01-23 11:22 UTC (permalink / raw)
To: Sebastian Schuberth; +Cc: git, Johannes Schindelin, jugg
Heya,
On Sat, Jan 23, 2010 at 11:22, Sebastian Schuberth <sschuberth@gmail.com> wrote:
> spaces. As GIT_SSH will not work if it contains quotes, it is save to
s/save/safe/
--
Cheers,
Sverre Rabbelier
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] If deriving SVN_SSH from GIT_SSH on msys, also add quotes
2010-01-23 11:22 ` Sverre Rabbelier
@ 2010-01-23 14:20 ` Sebastian Schuberth
2010-01-23 19:33 ` Junio C Hamano
0 siblings, 1 reply; 5+ messages in thread
From: Sebastian Schuberth @ 2010-01-23 14:20 UTC (permalink / raw)
To: Sverre Rabbelier; +Cc: git, Johannes Schindelin, jugg
In contrast to GIT_SSH, SVN_SSH requires quotes for paths that contain
spaces. As GIT_SSH will not work if it contains quotes, it is safe to
assume it never contains quotes. Also, adding quotes to SVN_SSH for paths
that do not contain spaces does no harm. So we always add quotes when
deriving SVN_SSH from GIT_SSH.
This fixes msysGit issue 385, see
http://code.google.com/p/msysgit/issues/detail?id=385
Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
---
git-svn.perl | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/git-svn.perl b/git-svn.perl
index 650c9e5..ef39a9f 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -26,6 +26,7 @@ if (! exists $ENV{SVN_SSH}) {
$ENV{SVN_SSH} = $ENV{GIT_SSH};
if ($^O eq 'msys') {
$ENV{SVN_SSH} =~ s/\\/\\\\/g;
+ $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
}
}
}
--
1.6.6.265.ga0f40
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] If deriving SVN_SSH from GIT_SSH on msys, also add quotes
2010-01-23 14:20 ` Sebastian Schuberth
@ 2010-01-23 19:33 ` Junio C Hamano
2010-01-23 20:11 ` Sebastian Schuberth
0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2010-01-23 19:33 UTC (permalink / raw)
To: Sebastian Schuberth
Cc: Sverre Rabbelier, git, Eric Wong, Johannes Schindelin, jugg
Sebastian Schuberth <sschuberth@gmail.com> writes:
> In contrast to GIT_SSH, SVN_SSH requires quotes for paths that contain
> spaces. As GIT_SSH will not work if it contains quotes, it is safe to
> assume it never contains quotes. Also, adding quotes to SVN_SSH for paths
> that do not contain spaces does no harm. So we always add quotes when
> deriving SVN_SSH from GIT_SSH.
>
> This fixes msysGit issue 385, see
> http://code.google.com/p/msysgit/issues/detail?id=385
>
> Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
As the patch clearly is inside "msys-only" codepath, I don't mind
bypassing Eric and apply this directly to my tree before I tag 1.7.0-rc0,
but may I ask why this quoting magic matters only on msys?
> ---
> git-svn.perl | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/git-svn.perl b/git-svn.perl
> index 650c9e5..ef39a9f 100755
> --- a/git-svn.perl
> +++ b/git-svn.perl
> @@ -26,6 +26,7 @@ if (! exists $ENV{SVN_SSH}) {
> $ENV{SVN_SSH} = $ENV{GIT_SSH};
> if ($^O eq 'msys') {
> $ENV{SVN_SSH} =~ s/\\/\\\\/g;
> + $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
> }
> }
> }
> --
> 1.6.6.265.ga0f40
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] If deriving SVN_SSH from GIT_SSH on msys, also add quotes
2010-01-23 19:33 ` Junio C Hamano
@ 2010-01-23 20:11 ` Sebastian Schuberth
0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Schuberth @ 2010-01-23 20:11 UTC (permalink / raw)
To: Junio C Hamano
Cc: Sverre Rabbelier, git, Eric Wong, Johannes Schindelin, jugg
On Sat, Jan 23, 2010 at 20:33, Junio C Hamano <gitster@pobox.com> wrote:
>> This fixes msysGit issue 385, see
>> http://code.google.com/p/msysgit/issues/detail?id=385
>>
>> Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
>
> As the patch clearly is inside "msys-only" codepath, I don't mind
> bypassing Eric and apply this directly to my tree before I tag 1.7.0-rc0,
> but may I ask why this quoting magic matters only on msys?
To be honest, I'm not exactly sure why this is required. Maybe the SVN
Perl module does some different path mangling than a normal MSYS SVN
binary would do. We're already setting SVN_SSH like this (that is,
using double-backslashes and quotes) in the msysGit installer, see the
discussion at [1]. This patch basically just does the same thing for
people that initially chose to not modify the environment during the
msysGit installation, but later change GIT_SSH manually, and forget to
set SVN_SSH, too.
[1] http://code.google.com/p/msysgit/issues/detail?id=305#c8
--
Sebastian Schuberth
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-01-23 20:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-23 10:22 [PATCH] If deriving SVN_SSH from GIT_SSH on msys, also add quotes Sebastian Schuberth
2010-01-23 11:22 ` Sverre Rabbelier
2010-01-23 14:20 ` Sebastian Schuberth
2010-01-23 19:33 ` Junio C Hamano
2010-01-23 20:11 ` Sebastian Schuberth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).