git svn: URL-decode left-hand side of svn refspec
This change allows git-svn to handle an URL with colons in the path [ew: rewritten to use uri_decode() function] Signed-off-by: Eric Wong <normalperson@yhbt.net>
This commit is contained in:
parent
181264ad59
commit
46cb16fb59
@ -1820,6 +1820,7 @@ sub read_all_remotes {
|
|||||||
die("svn-remote.$remote: remote ref '$remote_ref' "
|
die("svn-remote.$remote: remote ref '$remote_ref' "
|
||||||
. "must start with 'refs/'\n")
|
. "must start with 'refs/'\n")
|
||||||
unless $remote_ref =~ m{^refs/};
|
unless $remote_ref =~ m{^refs/};
|
||||||
|
$local_ref = uri_decode($local_ref);
|
||||||
$r->{$remote}->{fetch}->{$local_ref} = $remote_ref;
|
$r->{$remote}->{fetch}->{$local_ref} = $remote_ref;
|
||||||
$r->{$remote}->{svm} = {} if $use_svm_props;
|
$r->{$remote}->{svm} = {} if $use_svm_props;
|
||||||
} elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) {
|
} elsif (m!^(.+)\.usesvmprops=\s*(.*)\s*$!) {
|
||||||
@ -1832,6 +1833,7 @@ sub read_all_remotes {
|
|||||||
die("svn-remote.$remote: remote ref '$remote_ref' ($t) "
|
die("svn-remote.$remote: remote ref '$remote_ref' ($t) "
|
||||||
. "must start with 'refs/'\n")
|
. "must start with 'refs/'\n")
|
||||||
unless $remote_ref =~ m{^refs/};
|
unless $remote_ref =~ m{^refs/};
|
||||||
|
$local_ref = uri_decode($local_ref);
|
||||||
my $rs = {
|
my $rs = {
|
||||||
t => $t,
|
t => $t,
|
||||||
remote => $remote,
|
remote => $remote,
|
||||||
|
Loading…
Reference in New Issue
Block a user