]> andersk Git - svn-all-fast-export.git/blob - samples/ignore-branch.rules
Don't let me waste 2 hours doing an import if the identity map file wasn't found...
[svn-all-fast-export.git] / samples / ignore-branch.rules
1 #
2 # Declare the repositories we know about:
3 #
4
5 create repository myproject
6 end repository
7
8 #
9 # Declare the rules
10 # Note: rules must end in a slash
11 #
12
13 match /trunk/
14   repository myproject
15   branch master
16 end match
17
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
25
26 match /branches/([^/]+)/
27   repository myproject
28   branch \1
29 end match
30
31 # No tag processing
This page took 0.338474 seconds and 5 git commands to generate.