* [PATCH] git-svn: use ~/.subversion config files when using SVN:: libraries
@ 2006-11-27 21:20 Eric Wong
0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2006-11-27 21:20 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git, Eric Wong
This allows users to use HTTP proxy information (among other settings)
from ~/.subversion/servers and ~/.subversion/config
--config-dir (as before) may be passed to git-svn to override the
default choice of '~/.subversion' for the configuration directory.
Thanks to tko on #git for pointing this out.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
---
git-svn.perl | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/git-svn.perl b/git-svn.perl
index de4e74a..d5d9c49 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -2822,7 +2822,9 @@ sub libsvn_connect {
SVN::Client::get_username_prompt_provider(
\&_username_prompt, 2),
]);
+ my $config = SVN::Core::config_get_config($_config_dir);
my $ra = SVN::Ra->new(url => $url, auth => $baton,
+ config => $config,
pool => SVN::Pool->new,
auth_provider_callbacks => $callbacks);
$ra->{svn_path} = $url;
@@ -2834,8 +2836,8 @@ sub libsvn_connect {
sub libsvn_dup_ra {
my ($ra) = @_;
- SVN::Ra->new(map { $_ => $ra->{$_} }
- qw/url auth auth_provider_callbacks repos_root svn_path/);
+ SVN::Ra->new(map { $_ => $ra->{$_} } qw/config url
+ auth auth_provider_callbacks repos_root svn_path/);
}
sub libsvn_get_file {
--
1.4.4.1.g36f2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-11-27 21:21 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-27 21:20 [PATCH] git-svn: use ~/.subversion config files when using SVN:: libraries Eric Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox