diff options
Diffstat (limited to 'samples')
-rw-r--r-- | samples/recurse.rules | 8 |
1 files 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 |