Add a set of sample rules files.
[svn-all-fast-export.git] / samples / standardlayout.rules
blobb5e102f21099f7db14bc2a7b89730ffbb6e4d3eb
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 match /branches/([^/]+)/
19   repository myproject
20   branch \1
21 end match
23 match /tags/([^/]+)/
24   repository myproject
25   branch refs/tags/\1
26 end match