aboutsummaryrefslogtreecommitdiffstats
path: root/samples/standardlayout.rules
blob: b5e102f21099f7db14bc2a7b89730ffbb6e4d3eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# Declare the repositories we know about:
#

create repository myproject
end repository

#
# Declare the rules
# Note: rules must end in a slash
#

match /trunk/
  repository myproject
  branch master
end match

match /branches/([^/]+)/
  repository myproject
  branch \1
end match

match /tags/([^/]+)/
  repository myproject
  branch refs/tags/\1
end match