Merge branch 'maint'

* maint:
  git-svn.perl: workaround assertions in svn library 1.5.0
This commit is contained in:
Junio C Hamano 2008-07-07 16:31:55 -07:00
commit 07e2fbcb90

View File

@ -643,6 +643,8 @@ sub canonicalize_path {
$path =~ s#/[^/]+/\.\.##g;
$path =~ s#/$##g;
$path =~ s#^\./## if $dot_slash_added;
$path =~ s#^/##;
$path =~ s#^\.$##;
return $path;
}