aboutsummaryrefslogtreecommitdiffstats
path: root/samples/merged-branches-tags.rules
diff options
context:
space:
mode:
authorThiago Macieira <thiago@kde.org>2009-02-20 21:47:05 +0100
committerThiago Macieira <thiago@kde.org>2009-02-20 21:47:05 +0100
commit60d67149d24f86474d20fac636093092d7f37e7a (patch)
tree923ec1bea9d2dc3dd3283ca10dd10d81b8e2e664 /samples/merged-branches-tags.rules
parent7abbe81c3b2b10d144aee0be744258a352558e03 (diff)
downloadsvn2git-60d67149d24f86474d20fac636093092d7f37e7a.tar
svn2git-60d67149d24f86474d20fac636093092d7f37e7a.tar.gz
svn2git-60d67149d24f86474d20fac636093092d7f37e7a.tar.bz2
svn2git-60d67149d24f86474d20fac636093092d7f37e7a.tar.xz
svn2git-60d67149d24f86474d20fac636093092d7f37e7a.zip
Add a set of sample rules files.
All of these files are untested. I just wrote from memory.
Diffstat (limited to 'samples/merged-branches-tags.rules')
-rw-r--r--samples/merged-branches-tags.rules31
1 files changed, 31 insertions, 0 deletions
diff --git a/samples/merged-branches-tags.rules b/samples/merged-branches-tags.rules
new file mode 100644
index 0000000..c1ab75c
--- /dev/null
+++ b/samples/merged-branches-tags.rules
@@ -0,0 +1,31 @@
+#
+# 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
+
+# Subversion doesn't understand the Git concept of tags
+# In Subversion, tags are really branches
+#
+# Only a post-processing (i.e., after converting to Git) of the tag
+# branches can we be sure that a tag wasn't moved or changed from the
+# branch it was copied from
+#
+# So we don't pretend that SVN tags are Git tags and then import
+# everything as one
+
+match /(branches|tags)/([^/]+)/
+ repository myproject
+ branch \2
+end match