]> andersk Git - svn-all-fast-export.git/blame - samples/ignore-branch.rules
Add a set of sample rules files.
[svn-all-fast-export.git] / samples / ignore-branch.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
13match /trunk/
14 repository myproject
15 branch master
16end 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
23match /branches/abandoned-work/
24end match
25
26match /branches/([^/]+)/
27 repository myproject
28 branch \1
29end match
30
31# No tag processing
This page took 0.04394 seconds and 5 git commands to generate.