blob: d447c5fe86bbcb5f6893111476e328b07c3d080c (
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
27
28
29
30
31
32
33
34
35
|
#
# Declare the repositories we know about:
#
create repository fetchmail
end repository
#
# Declare the rules
# Note: rules must end in a slash
#
match /branches/([^/]+)/
repository fetchmail
branch \1
end match
match /tags/([^/]+)/
repository fetchmail
branch _tag_\1
end match
match /trunk/
repository fetchmail
branch master
end match
match /vendor/([^/]+)/
repository fetchmail
branch vendor_\1
end match
# fix a goofup
match /branches/branch_6-2
end match
|