diff options
author | Christian Biesinger <cbiesinger@web.de> | 2006-02-11 16:44:11 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-11 17:59:38 -0800 |
commit | 7bbdeaa969794edd67cd4a1ed09b9a057b6af4c3 (patch) | |
tree | 458f37a15d8364106329d29bc563cbcf8ea29e87 /git-svnimport.perl | |
parent | 21fcd1bdea2440236aea1713ea42a66bc2da5563 (diff) | |
download | git-7bbdeaa969794edd67cd4a1ed09b9a057b6af4c3.tar.gz git-7bbdeaa969794edd67cd4a1ed09b9a057b6af4c3.tar.xz |
Use a relative path for SVN importing
The absolute path (with the leading slash) breaks SVN importing,
because it then looks for /trunk/... instead of /svn/trunk/...
(in my case, the repository URL was https://servername/svn/)
Signed-off-by: Christian Biesinger <cbiesinger@web.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-svnimport.perl')
-rwxr-xr-x | git-svnimport.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svnimport.perl b/git-svnimport.perl index b6799d81e..f17d5a27c 100755 --- a/git-svnimport.perl +++ b/git-svnimport.perl @@ -318,7 +318,7 @@ sub get_file($$$) { die $res->status_line." at $url\n"; } } else { - $name = $svn->file("/$svnpath",$rev); + $name = $svn->file("$svnpath",$rev); return undef unless defined $name; } |