]> andersk Git - svn-all-fast-export.git/blame - samples/min-max-revision.rules
Add a set of sample rules files.
[svn-all-fast-export.git] / samples / min-max-revision.rules
CommitLineData
60d67149
TM
1#
2# Declare the repositories we know about:
3#
4
5create repository myproject
6end repository
7
8#
9# Declare the rules
10# Note: rules must end in a slash
11#
12
13# Ignore this particular revision in trunk
14# See ignore-branch.rules first
15# Note that rules are applied in order of appearance, so this rule
16# must appear before the generic trunk rule
17match /trunk/
18 min revision 123
19 max revision 123
20end match
21
22# Stop importing trunk
23# If we don't specify a max revision, then there is no limit
24# The same applies to min revision (i.e., min revision is 0)
25match /trunk/
26 min revision 1234
27end match
28
29match /trunk/
30 repository myproject
31 branch master
32end match
33
34match /branches/([^/]+)/
35 repository myproject
36 branch \1
37end match
38
39# No tag processing
This page took 1.525076 seconds and 5 git commands to generate.