]> andersk Git - svn-all-fast-export.git/blame - samples/two-projects.rules
Add a set of sample rules files.
[svn-all-fast-export.git] / samples / two-projects.rules
CommitLineData
60d67149
TM
1#
2# Declare the repositories we know about:
3#
4
5create repository project1
6end repository
7
8create repository project2
9end repository
10
11#
12# Declare the rules
13# Note: rules must end in a slash
14#
15
16match /project1/trunk/
17 repository project1
18 branch master
19end match
20
21match /project2/trunk/
22 repository project2
23 branch master
24end match
25
26# Note how we can use regexp to capture the repository name
27match /([^/]+)/branches/([^/]+)/
28 repository \1
29 branch \2
30end match
31
32# No tag processing
This page took 0.274889 seconds and 5 git commands to generate.