Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-svn: Use GIT_SSH setting if SVN_SSH is not set
author
Karthik R
<karthikr@fastmail.fm>
Tue, 18 Aug 2009 23:54:40 +0000
(18:54 -0500)
committer
Eric Wong
<normalperson@yhbt.net>
Wed, 19 Aug 2009 03:51:32 +0000
(20:51 -0700)
If SVN_SSH is defined, it will be used. Else value in
GIT_SSH is copied to SVN_SSH & then, only on Windows,
the \s are escaped.
On Windows, the shell-variables must be set as follows
GIT_SSH="C:\Program Files\PuTTY\plink.exe"
SVN_SSH="C:\\Program Files\\PuTTY\\plink.exe"
See http://code.google.com/p/msysgit/issues/detail?id=305
[ew: fixed indentation to use tabs]
Acked-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Karthik Rajagopalan <karthikr@fastmail.fm>
git-svn.perl
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
5268f9e
)
diff --git
a/git-svn.perl
b/git-svn.perl
index 5515e3ea549fd16df5f851b8b3ffc1e7cc1e2c22..ce4fef9d340b2551bb21bd8f48cd97d09253a48b 100755
(executable)
--- a/
git-svn.perl
+++ b/
git-svn.perl
@@
-21,6
+21,15
@@
$Git::SVN::Ra::_log_window_size = 100;
$Git::SVN::_minimize_url = 'unset';
+if (! exists $ENV{SVN_SSH}) {
+ if (exists $ENV{GIT_SSH}) {
+ $ENV{SVN_SSH} = $ENV{GIT_SSH};
+ if ($^O eq 'msys') {
+ $ENV{SVN_SSH} =~ s/\\/\\\\/g;
+ }
+ }
+}
+
$Git::SVN::Log::TZ = $ENV{TZ};
$ENV{TZ} = 'UTC';
$| = 1; # unbuffer STDOUT