aboutsummaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorThiago Macieira <thiago@kde.org>2009-02-20 21:49:15 +0100
committerThiago Macieira <thiago@kde.org>2009-02-20 21:49:15 +0100
commit35d851a29af9dff5d07552a1a92026a269bf7d74 (patch)
treef19e61317d34ac2c2b70dbf438a7821f2e70955d /samples
parent60d67149d24f86474d20fac636093092d7f37e7a (diff)
downloadsvn2git-35d851a29af9dff5d07552a1a92026a269bf7d74.tar
svn2git-35d851a29af9dff5d07552a1a92026a269bf7d74.tar.gz
svn2git-35d851a29af9dff5d07552a1a92026a269bf7d74.tar.bz2
svn2git-35d851a29af9dff5d07552a1a92026a269bf7d74.tar.xz
svn2git-35d851a29af9dff5d07552a1a92026a269bf7d74.zip
Fix the recurse rules sample file: the repository name comes after the branch name, like in KDE
Diffstat (limited to 'samples')
-rw-r--r--samples/recurse.rules8
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