Changeset 2356 for trunk/scripts/git-migration/rules.mako
- Timestamp:
- Jun 13, 2009, 6:32:51 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/git-migration/rules.mako
r2310 r2356 67 67 match /package_tags/${package}/([^/~]+)/${package}/ 68 68 repository ${get_repo(package)} 69 branch tags/${get_tag_prefix(package)}\1 69 branch refs/tags/${get_tag_prefix(package)}\1 70 annotated true 70 71 max revision ${packages[package]['undouble'][0] - 1} 71 72 end match … … 95 96 match /package_tags/${package}/([^/~]+)/ 96 97 repository ${get_repo(package)} 97 branch tags/${get_tag_prefix(package)}\1 98 branch refs/tags/${get_tag_prefix(package)}\1 99 annotated true 98 100 % if 'undouble' in packages[package]: 99 101 min revision ${packages[package]['undouble'][1]} … … 103 105 match /package_tags/${package}/([^/~]+)~([^/~]+)/ 104 106 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 106 109 % if 'undouble' in packages[package]: 107 110 min revision ${packages[package]['undouble'][1]} … … 175 178 match /third_tags/${t}/([^/~]+)/ 176 179 repository third/${t}.git 177 branch tags/\1 180 branch refs/tags/\1 181 annotated true 178 182 end match 179 183 % endfor
Note: See TracChangeset
for help on using the changeset viewer.