From 35d851a29af9dff5d07552a1a92026a269bf7d74 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 20 Feb 2009 21:49:15 +0100 Subject: [PATCH] Fix the recurse rules sample file: the repository name comes after the branch name, like in KDE --- samples/recurse.rules | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 -- 2.11.4.GIT