Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 33772:d434a7f0685c
config: rename evolution config into stabilization
Use aliases for backward-compatibility. Though I'm not sure how to emit
compatibility warnings with aliases.
Test configuration are updated in the next patch.
The renaming is done according to
https://www.mercurial-scm.org/wiki/CEDVocabulary.
Differential Revision: https://phab.mercurial-scm.org/D248
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Thu, 03 Aug 2017 11:38:22 +0200 |
parents | 96f43981c1c4 |
children | 9dcc3529e002 |
comparison
equal
deleted
inserted
replaced
33771:96f43981c1c4 | 33772:d434a7f0685c |
---|---|
1225 if complevel is not None: | 1225 if complevel is not None: |
1226 compopts['level'] = complevel | 1226 compopts['level'] = complevel |
1227 | 1227 |
1228 | 1228 |
1229 contentopts = {'cg.version': cgversion} | 1229 contentopts = {'cg.version': cgversion} |
1230 if repo.ui.configbool('experimental', 'evolution.bundle-obsmarker'): | 1230 if repo.ui.configbool('experimental', 'stabilization.bundle-obsmarker'): |
1231 contentopts['obsolescence'] = True | 1231 contentopts['obsolescence'] = True |
1232 if repo.ui.configbool('experimental', 'bundle-phases'): | 1232 if repo.ui.configbool('experimental', 'bundle-phases'): |
1233 contentopts['phases'] = True | 1233 contentopts['phases'] = True |
1234 bundle2.writenewbundle(ui, repo, 'bundle', fname, bversion, outgoing, | 1234 bundle2.writenewbundle(ui, repo, 'bundle', fname, bversion, outgoing, |
1235 contentopts, compression=bcompression, | 1235 contentopts, compression=bcompression, |