Mercurial > public > mercurial-scm > hg
comparison mercurial/upgrade_utils/actions.py @ 49187:04a812f507be
copies-sdc: mark upgrade action as changelog only
We don't need to recompute the other revlog to add the changelog-v2 feature.
This simplify upgrade that use copies-sdc (as shown in the tests).
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Thu, 19 May 2022 01:34:51 +0100 |
parents | 801ef401597e |
children | 566066826e7c |
comparison
equal
deleted
inserted
replaced
49186:801ef401597e | 49187:04a812f507be |
---|---|
359 description = _(b'Stores copies information alongside changesets.') | 359 description = _(b'Stores copies information alongside changesets.') |
360 | 360 |
361 upgrademessage = _( | 361 upgrademessage = _( |
362 b'Allows to use more efficient algorithm to deal with ' b'copy tracing.' | 362 b'Allows to use more efficient algorithm to deal with ' b'copy tracing.' |
363 ) | 363 ) |
364 | |
365 touches_filelogs = False | |
366 touches_manifests = False | |
364 | 367 |
365 | 368 |
366 @registerformatvariant | 369 @registerformatvariant |
367 class revlogv2(requirementformatvariant): | 370 class revlogv2(requirementformatvariant): |
368 name = b'revlog-v2' | 371 name = b'revlog-v2' |