diff options
author | Igor Mironov <igor.a.mironov@gmail.com> | 2010-01-12 03:20:43 +1100 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2010-01-23 03:23:03 -0800 |
commit | a83b91e7246fed3df5686c29a3c64eed8670fd98 (patch) | |
tree | 2bce3f985e5b211fbbdbf38cc38cb5f721cbae1b /git-svn.perl | |
parent | 41c01693ac13846c73a31c8f5c3a60206e1643be (diff) | |
download | git-a83b91e7246fed3df5686c29a3c64eed8670fd98.tar.gz git-a83b91e7246fed3df5686c29a3c64eed8670fd98.tar.xz |
git-svn: fix mismatched src/dst errors for branch/tag
This fixes the following issue:
$ git svn branch -t --username=svnuser \
--commit-url=https://myproj.domain.com/svn mytag
Copying http://myproj.domain.com/svn/trunk at r26 to
https://myproj.domain.com/svn/tags/mytag...
Trying to use an unsupported feature: Source and dest appear not to be
in the same repository (src: 'http://myproj.domain.com/svn/trunk';
dst: 'https://myproj.domain.com/svn/tags/mytag')
[ew: shortened subject]
Signed-off-by: Igor Mironov <igor.a.mironov@gmail.com>
Acked-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-x | git-svn.perl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/git-svn.perl b/git-svn.perl index e0773eff4..e05bf366c 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -710,6 +710,10 @@ sub cmd_branch { my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/}; my $dst = join '/', $remote->{url}, $lft, $branch_name, ($rgt || ()); + if ($dst =~ /^https:/ && $src =~ /^http:/) { + $src=~s/^http:/https:/; + } + my $ctx = SVN::Client->new( auth => Git::SVN::Ra::_auth_providers(), log_msg => sub { |