Comments
Patch
@@ -13,7 +13,7 @@
> rebase =
> [experimental]
> evolution = all
- > effect-flags = 1
+ > evolution.effect-flags = 1
> EOF
$ hg init $TESTTMP/effect-flags
@@ -1077,7 +1077,7 @@
# Effect flag metadata handling
saveeffectflag = repo.ui.configbool('experimental',
- 'effect-flags')
+ 'evolution.effect-flags')
tr = repo.transaction('add-obsolescence-marker')
try:
@@ -369,6 +369,10 @@
coreconfigitem('experimental', 'evolution.createmarkers',
default=None,
)
+coreconfigitem('experimental', 'evolution.effect-flags',
+ default=False,
+ alias=[('experimental', 'effect-flags')]
+)
coreconfigitem('experimental', 'evolution.exchange',
default=None,
)
@@ -387,9 +391,6 @@
coreconfigitem('experimental', 'nonnormalparanoidcheck',
default=False,
)
-coreconfigitem('experimental', 'effect-flags',
- default=False,
-)
coreconfigitem('experimental', 'exportableenviron',
default=list,
)