Add a set of sample rules files.
[svn-all-fast-export.git] / samples / ignore-branch.rules
blob28b4bf039846fa16beb1b829217df7f601cdb00a
2 # Declare the repositories we know about:
5 create repository myproject
6 end repository
9 # Declare the rules
10 # Note: rules must end in a slash
13 match /trunk/
14   repository myproject
15   branch master
16 end match
18 # Ignore this branch:
19 # We ignore a branch by not telling svn-all-fast-export what to do
20 # with this path
21 # Note that rules are applied in order of appearance, so this rule
22 # must appear before the generic branch rule
23 match /branches/abandoned-work/
24 end match
26 match /branches/([^/]+)/
27   repository myproject
28   branch \1
29 end match
31 # No tag processing