From: Thiago Macieira Date: Fri, 20 Feb 2009 20:49:15 +0000 (+0100) Subject: Fix the recurse rules sample file: the repository name comes after the branch name... X-Git-Url: https://repo.or.cz/w/svn-all-fast-export.git/commitdiff_plain/35d851a29af9dff5d07552a1a92026a269bf7d74 Fix the recurse rules sample file: the repository name comes after the branch name, like in KDE --- diff --git a/samples/recurse.rules b/samples/recurse.rules index bfce621..0840e41 100644 --- a/samples/recurse.rules +++ b/samples/recurse.rules @@ -18,9 +18,13 @@ match /trunk/([^/]+)/ branch master end match +# +# SVN layout: +# /branches/branchname/project1 +# /branches/branchname/project2 match /branches/([^/]+)/([^/]+)/ - repository \1 - branch \2 + repository \2 + branch \1 end match