From: Eric Wong Date: Wed, 5 Jul 2006 12:14:00 +0000 (-0700) Subject: git-svn: avoid fetching files outside of the URL we're tracking X-Git-Tag: v1.4.2-rc1~89 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4bbf599f7bb6bd6debb3624b27815f366b7b34a1;p=git.git git-svn: avoid fetching files outside of the URL we're tracking Thanks to Santi for the bug report and explanation: > /path/to/repository/project/file > /path/to/repository/project-2/file <...> > you end up with a project with the following files: > > file > -2/file Signed-off-by: Eric Wong --- diff --git a/contrib/git-svn/git-svn.perl b/contrib/git-svn/git-svn.perl index 1e19aa19b..8bc4188e0 100755 --- a/contrib/git-svn/git-svn.perl +++ b/contrib/git-svn/git-svn.perl @@ -2617,7 +2617,7 @@ sub libsvn_connect { sub libsvn_get_file { my ($gui, $f, $rev) = @_; my $p = $f; - return unless ($p =~ s#^\Q$SVN_PATH\E/?##); + return unless ($p =~ s#^\Q$SVN_PATH\E/##); my ($hash, $pid, $in, $out); my $pool = SVN::Pool->new;