diff options
author | Thiago Macieira <thiago@kde.org> | 2009-02-20 21:51:48 +0100 |
---|---|---|
committer | Thiago Macieira <thiago@kde.org> | 2009-02-20 21:51:48 +0100 |
commit | 7d5244f97278f85caee51626e228b2b4fa7cbb88 (patch) | |
tree | a6f8ec84f2a5df6e42cd78f1f99d038df1be5b42 /samples | |
parent | 35d851a29af9dff5d07552a1a92026a269bf7d74 (diff) | |
download | svn2git-7d5244f97278f85caee51626e228b2b4fa7cbb88.tar svn2git-7d5244f97278f85caee51626e228b2b4fa7cbb88.tar.gz svn2git-7d5244f97278f85caee51626e228b2b4fa7cbb88.tar.bz2 svn2git-7d5244f97278f85caee51626e228b2b4fa7cbb88.tar.xz svn2git-7d5244f97278f85caee51626e228b2b4fa7cbb88.zip |
Add a warning about tag processing in the standardlayout file
Diffstat (limited to 'samples')
-rw-r--r-- | samples/standardlayout.rules | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/samples/standardlayout.rules b/samples/standardlayout.rules index b5e102f..bf3a6f8 100644 --- a/samples/standardlayout.rules +++ b/samples/standardlayout.rules @@ -20,6 +20,17 @@ match /branches/([^/]+)/ branch \1 end match +# Important: +# 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 +# +# This rule will create tags that don't exist in any of the +# branches. It's not what you want. +# See the merged-branches-tags.rules file match /tags/([^/]+)/ repository myproject branch refs/tags/\1 |