##// END OF EJS Templates
configitems: move rebase config into core...
Boris Feld -
r34832:44c4ed4a default
parent child Browse files
Show More
@@ -73,20 +73,6 b' command = registrar.command(cmdtable)'
73 # leave the attribute unspecified.
73 # leave the attribute unspecified.
74 testedwith = 'ships-with-hg-core'
74 testedwith = 'ships-with-hg-core'
75
75
76 configtable = {}
77 configitem = registrar.configitem(configtable)
78
79 configitem('commands', 'rebase.requiredest',
80 default=False,
81 )
82
83 configitem('experimental', 'rebaseskipobsolete',
84 default=True,
85 )
86 configitem('rebase', 'singletransaction',
87 default=False,
88 )
89
90 def _nothingtorebase():
76 def _nothingtorebase():
91 return 1
77 return 1
92
78
@@ -1085,3 +1085,16 b" coreconfigitem('worker', 'backgroundclos"
1085 coreconfigitem('worker', 'numcpus',
1085 coreconfigitem('worker', 'numcpus',
1086 default=None,
1086 default=None,
1087 )
1087 )
1088
1089 # Rebase related configuration moved to core because other extension are doing
1090 # strange things. For example, shelve import the extensions to reuse some bit
1091 # without formally loading it.
1092 coreconfigitem('commands', 'rebase.requiredest',
1093 default=False,
1094 )
1095 coreconfigitem('experimental', 'rebaseskipobsolete',
1096 default=True,
1097 )
1098 coreconfigitem('rebase', 'singletransaction',
1099 default=False,
1100 )
General Comments 0
You need to be logged in to leave comments. Login now