diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-02-16 10:52:39 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-02-16 10:53:11 +0100 |
commit | 83caced2a8a49130b5c54f14a3e12718a5630b82 (patch) | |
tree | a46019923fa8b69e1976ad881a8f8fc64e50252a /vcs-tools/fetchmail.rules | |
parent | c1e491f2fcf60041b5e9a01f7a28d26fa127d447 (diff) | |
download | fetchmail-83caced2a8a49130b5c54f14a3e12718a5630b82.tar.gz fetchmail-83caced2a8a49130b5c54f14a3e12718a5630b82.tar.bz2 fetchmail-83caced2a8a49130b5c54f14a3e12718a5630b82.zip |
Archive the SVN->Git conversion scripts. Not distributed.
Diffstat (limited to 'vcs-tools/fetchmail.rules')
-rw-r--r-- | vcs-tools/fetchmail.rules | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/vcs-tools/fetchmail.rules b/vcs-tools/fetchmail.rules new file mode 100644 index 00000000..d447c5fe --- /dev/null +++ b/vcs-tools/fetchmail.rules @@ -0,0 +1,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 |