1
0
mirror of https://github.com/git/git.git synced 2024-09-28 16:13:01 +02:00

git svn: branch/tag commands detect username in URLs

svn+ssh:// repositories often have userinfo embedded in the URL
which were stripped out of the "git-svn-id:" trailers.  Since
the SVN::Client::copy function takes userinfo into account when
matching URLs for SVN repositories, we need to retrieve the full
URL with embedded userinfo in it to avoid mismatched URLs.

Tested-by: Florian Köberle <florian@fkoeberle.de>
Signed-off-by: Eric Wong <normalperson@yhbt.net>
This commit is contained in:
Eric Wong 2009-12-22 22:40:18 -08:00
parent 129a5a6dea
commit 150d38c4f3

@ -663,7 +663,8 @@ sub cmd_branch {
}
$head ||= 'HEAD';
my ($src, $rev, undef, $gs) = working_head_info($head);
my (undef, $rev, undef, $gs) = working_head_info($head);
my $src = $gs->full_url;
my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };