##// END OF EJS Templates
config: also gather effect-flags on experimental.evolution...
Boris Feld -
r34903:cc977ec0 default
parent child Browse files
Show More
@@ -369,6 +369,10 b" coreconfigitem('experimental', 'evolutio"
369 369 coreconfigitem('experimental', 'evolution.createmarkers',
370 370 default=None,
371 371 )
372 coreconfigitem('experimental', 'evolution.effect-flags',
373 default=False,
374 alias=[('experimental', 'effect-flags')]
375 )
372 376 coreconfigitem('experimental', 'evolution.exchange',
373 377 default=None,
374 378 )
@@ -387,9 +391,6 b" coreconfigitem('experimental', 'mmapinde"
387 391 coreconfigitem('experimental', 'nonnormalparanoidcheck',
388 392 default=False,
389 393 )
390 coreconfigitem('experimental', 'effect-flags',
391 default=False,
392 )
393 394 coreconfigitem('experimental', 'exportableenviron',
394 395 default=list,
395 396 )
@@ -1077,7 +1077,7 b' def createmarkers(repo, relations, flag='
1077 1077
1078 1078 # Effect flag metadata handling
1079 1079 saveeffectflag = repo.ui.configbool('experimental',
1080 'effect-flags')
1080 'evolution.effect-flags')
1081 1081
1082 1082 tr = repo.transaction('add-obsolescence-marker')
1083 1083 try:
@@ -13,7 +13,7 b' Global setup'
13 13 > rebase =
14 14 > [experimental]
15 15 > evolution = all
16 > effect-flags = 1
16 > evolution.effect-flags = 1
17 17 > EOF
18 18
19 19 $ hg init $TESTTMP/effect-flags
General Comments 0
You need to be logged in to leave comments. Login now