From 60d67149d24f86474d20fac636093092d7f37e7a Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 20 Feb 2009 21:47:05 +0100 Subject: Add a set of sample rules files. All of these files are untested. I just wrote from memory. --- samples/min-max-revision.rules | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 samples/min-max-revision.rules (limited to 'samples/min-max-revision.rules') diff --git a/samples/min-max-revision.rules b/samples/min-max-revision.rules new file mode 100644 index 0000000..32ccd8e --- /dev/null +++ b/samples/min-max-revision.rules @@ -0,0 +1,39 @@ +# +# Declare the repositories we know about: +# + +create repository myproject +end repository + +# +# Declare the rules +# Note: rules must end in a slash +# + +# Ignore this particular revision in trunk +# See ignore-branch.rules first +# Note that rules are applied in order of appearance, so this rule +# must appear before the generic trunk rule +match /trunk/ + min revision 123 + max revision 123 +end match + +# Stop importing trunk +# If we don't specify a max revision, then there is no limit +# The same applies to min revision (i.e., min revision is 0) +match /trunk/ + min revision 1234 +end match + +match /trunk/ + repository myproject + branch master +end match + +match /branches/([^/]+)/ + repository myproject + branch \1 +end match + +# No tag processing -- cgit v1.2.1