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