Ignore:
Timestamp:
Jun 13, 2009, 6:32:51 PM (15 years ago)
Author:
andersk
Message:

svn-all-fast-export can create annotated tags now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/git-migration/rules.mako

    r2310 r2356  
    6767match /package_tags/${package}/([^/~]+)/${package}/
    6868  repository ${get_repo(package)}
    69   branch tags/${get_tag_prefix(package)}\1
     69  branch refs/tags/${get_tag_prefix(package)}\1
     70  annotated true
    7071  max revision ${packages[package]['undouble'][0] - 1}
    7172end match
     
    9596match /package_tags/${package}/([^/~]+)/
    9697  repository ${get_repo(package)}
    97   branch tags/${get_tag_prefix(package)}\1
     98  branch refs/tags/${get_tag_prefix(package)}\1
     99  annotated true
    98100%   if 'undouble' in packages[package]:
    99101  min revision ${packages[package]['undouble'][1]}
     
    103105match /package_tags/${package}/([^/~]+)~([^/~]+)/
    104106  repository ${get_repo(package)}
    105   branch tags/${get_tag_prefix(package)}\1_\2
     107  branch refs/tags/${get_tag_prefix(package)}\1_\2
     108  annotated true
    106109%   if 'undouble' in packages[package]:
    107110  min revision ${packages[package]['undouble'][1]}
     
    175178match /third_tags/${t}/([^/~]+)/
    176179  repository third/${t}.git
    177   branch tags/\1
     180  branch refs/tags/\1
     181  annotated true
    178182end match
    179183% endfor
Note: See TracChangeset for help on using the changeset viewer.