##// END OF EJS Templates
discovery: add a devel.discovery.exchange-heads...
marmoute -
r47034:6ee9bd69 default
parent child Browse files
Show More
@@ -1,2576 +1,2583
1 1 # configitems.py - centralized declaration of configuration option
2 2 #
3 3 # Copyright 2017 Pierre-Yves David <pierre-yves.david@octobus.net>
4 4 #
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 8 from __future__ import absolute_import
9 9
10 10 import functools
11 11 import re
12 12
13 13 from . import (
14 14 encoding,
15 15 error,
16 16 )
17 17
18 18
19 19 def loadconfigtable(ui, extname, configtable):
20 20 """update config item known to the ui with the extension ones"""
21 21 for section, items in sorted(configtable.items()):
22 22 knownitems = ui._knownconfig.setdefault(section, itemregister())
23 23 knownkeys = set(knownitems)
24 24 newkeys = set(items)
25 25 for key in sorted(knownkeys & newkeys):
26 26 msg = b"extension '%s' overwrite config item '%s.%s'"
27 27 msg %= (extname, section, key)
28 28 ui.develwarn(msg, config=b'warn-config')
29 29
30 30 knownitems.update(items)
31 31
32 32
33 33 class configitem(object):
34 34 """represent a known config item
35 35
36 36 :section: the official config section where to find this item,
37 37 :name: the official name within the section,
38 38 :default: default value for this item,
39 39 :alias: optional list of tuples as alternatives,
40 40 :generic: this is a generic definition, match name using regular expression.
41 41 """
42 42
43 43 def __init__(
44 44 self,
45 45 section,
46 46 name,
47 47 default=None,
48 48 alias=(),
49 49 generic=False,
50 50 priority=0,
51 51 experimental=False,
52 52 ):
53 53 self.section = section
54 54 self.name = name
55 55 self.default = default
56 56 self.alias = list(alias)
57 57 self.generic = generic
58 58 self.priority = priority
59 59 self.experimental = experimental
60 60 self._re = None
61 61 if generic:
62 62 self._re = re.compile(self.name)
63 63
64 64
65 65 class itemregister(dict):
66 66 """A specialized dictionary that can handle wild-card selection"""
67 67
68 68 def __init__(self):
69 69 super(itemregister, self).__init__()
70 70 self._generics = set()
71 71
72 72 def update(self, other):
73 73 super(itemregister, self).update(other)
74 74 self._generics.update(other._generics)
75 75
76 76 def __setitem__(self, key, item):
77 77 super(itemregister, self).__setitem__(key, item)
78 78 if item.generic:
79 79 self._generics.add(item)
80 80
81 81 def get(self, key):
82 82 baseitem = super(itemregister, self).get(key)
83 83 if baseitem is not None and not baseitem.generic:
84 84 return baseitem
85 85
86 86 # search for a matching generic item
87 87 generics = sorted(self._generics, key=(lambda x: (x.priority, x.name)))
88 88 for item in generics:
89 89 # we use 'match' instead of 'search' to make the matching simpler
90 90 # for people unfamiliar with regular expression. Having the match
91 91 # rooted to the start of the string will produce less surprising
92 92 # result for user writing simple regex for sub-attribute.
93 93 #
94 94 # For example using "color\..*" match produces an unsurprising
95 95 # result, while using search could suddenly match apparently
96 96 # unrelated configuration that happens to contains "color."
97 97 # anywhere. This is a tradeoff where we favor requiring ".*" on
98 98 # some match to avoid the need to prefix most pattern with "^".
99 99 # The "^" seems more error prone.
100 100 if item._re.match(key):
101 101 return item
102 102
103 103 return None
104 104
105 105
106 106 coreitems = {}
107 107
108 108
109 109 def _register(configtable, *args, **kwargs):
110 110 item = configitem(*args, **kwargs)
111 111 section = configtable.setdefault(item.section, itemregister())
112 112 if item.name in section:
113 113 msg = b"duplicated config item registration for '%s.%s'"
114 114 raise error.ProgrammingError(msg % (item.section, item.name))
115 115 section[item.name] = item
116 116
117 117
118 118 # special value for case where the default is derived from other values
119 119 dynamicdefault = object()
120 120
121 121 # Registering actual config items
122 122
123 123
124 124 def getitemregister(configtable):
125 125 f = functools.partial(_register, configtable)
126 126 # export pseudo enum as configitem.*
127 127 f.dynamicdefault = dynamicdefault
128 128 return f
129 129
130 130
131 131 coreconfigitem = getitemregister(coreitems)
132 132
133 133
134 134 def _registerdiffopts(section, configprefix=b''):
135 135 coreconfigitem(
136 136 section,
137 137 configprefix + b'nodates',
138 138 default=False,
139 139 )
140 140 coreconfigitem(
141 141 section,
142 142 configprefix + b'showfunc',
143 143 default=False,
144 144 )
145 145 coreconfigitem(
146 146 section,
147 147 configprefix + b'unified',
148 148 default=None,
149 149 )
150 150 coreconfigitem(
151 151 section,
152 152 configprefix + b'git',
153 153 default=False,
154 154 )
155 155 coreconfigitem(
156 156 section,
157 157 configprefix + b'ignorews',
158 158 default=False,
159 159 )
160 160 coreconfigitem(
161 161 section,
162 162 configprefix + b'ignorewsamount',
163 163 default=False,
164 164 )
165 165 coreconfigitem(
166 166 section,
167 167 configprefix + b'ignoreblanklines',
168 168 default=False,
169 169 )
170 170 coreconfigitem(
171 171 section,
172 172 configprefix + b'ignorewseol',
173 173 default=False,
174 174 )
175 175 coreconfigitem(
176 176 section,
177 177 configprefix + b'nobinary',
178 178 default=False,
179 179 )
180 180 coreconfigitem(
181 181 section,
182 182 configprefix + b'noprefix',
183 183 default=False,
184 184 )
185 185 coreconfigitem(
186 186 section,
187 187 configprefix + b'word-diff',
188 188 default=False,
189 189 )
190 190
191 191
192 192 coreconfigitem(
193 193 b'alias',
194 194 b'.*',
195 195 default=dynamicdefault,
196 196 generic=True,
197 197 )
198 198 coreconfigitem(
199 199 b'auth',
200 200 b'cookiefile',
201 201 default=None,
202 202 )
203 203 _registerdiffopts(section=b'annotate')
204 204 # bookmarks.pushing: internal hack for discovery
205 205 coreconfigitem(
206 206 b'bookmarks',
207 207 b'pushing',
208 208 default=list,
209 209 )
210 210 # bundle.mainreporoot: internal hack for bundlerepo
211 211 coreconfigitem(
212 212 b'bundle',
213 213 b'mainreporoot',
214 214 default=b'',
215 215 )
216 216 coreconfigitem(
217 217 b'censor',
218 218 b'policy',
219 219 default=b'abort',
220 220 experimental=True,
221 221 )
222 222 coreconfigitem(
223 223 b'chgserver',
224 224 b'idletimeout',
225 225 default=3600,
226 226 )
227 227 coreconfigitem(
228 228 b'chgserver',
229 229 b'skiphash',
230 230 default=False,
231 231 )
232 232 coreconfigitem(
233 233 b'cmdserver',
234 234 b'log',
235 235 default=None,
236 236 )
237 237 coreconfigitem(
238 238 b'cmdserver',
239 239 b'max-log-files',
240 240 default=7,
241 241 )
242 242 coreconfigitem(
243 243 b'cmdserver',
244 244 b'max-log-size',
245 245 default=b'1 MB',
246 246 )
247 247 coreconfigitem(
248 248 b'cmdserver',
249 249 b'max-repo-cache',
250 250 default=0,
251 251 experimental=True,
252 252 )
253 253 coreconfigitem(
254 254 b'cmdserver',
255 255 b'message-encodings',
256 256 default=list,
257 257 )
258 258 coreconfigitem(
259 259 b'cmdserver',
260 260 b'track-log',
261 261 default=lambda: [b'chgserver', b'cmdserver', b'repocache'],
262 262 )
263 263 coreconfigitem(
264 264 b'cmdserver',
265 265 b'shutdown-on-interrupt',
266 266 default=True,
267 267 )
268 268 coreconfigitem(
269 269 b'color',
270 270 b'.*',
271 271 default=None,
272 272 generic=True,
273 273 )
274 274 coreconfigitem(
275 275 b'color',
276 276 b'mode',
277 277 default=b'auto',
278 278 )
279 279 coreconfigitem(
280 280 b'color',
281 281 b'pagermode',
282 282 default=dynamicdefault,
283 283 )
284 284 coreconfigitem(
285 285 b'command-templates',
286 286 b'graphnode',
287 287 default=None,
288 288 alias=[(b'ui', b'graphnodetemplate')],
289 289 )
290 290 coreconfigitem(
291 291 b'command-templates',
292 292 b'log',
293 293 default=None,
294 294 alias=[(b'ui', b'logtemplate')],
295 295 )
296 296 coreconfigitem(
297 297 b'command-templates',
298 298 b'mergemarker',
299 299 default=(
300 300 b'{node|short} '
301 301 b'{ifeq(tags, "tip", "", '
302 302 b'ifeq(tags, "", "", "{tags} "))}'
303 303 b'{if(bookmarks, "{bookmarks} ")}'
304 304 b'{ifeq(branch, "default", "", "{branch} ")}'
305 305 b'- {author|user}: {desc|firstline}'
306 306 ),
307 307 alias=[(b'ui', b'mergemarkertemplate')],
308 308 )
309 309 coreconfigitem(
310 310 b'command-templates',
311 311 b'pre-merge-tool-output',
312 312 default=None,
313 313 alias=[(b'ui', b'pre-merge-tool-output-template')],
314 314 )
315 315 coreconfigitem(
316 316 b'command-templates',
317 317 b'oneline-summary',
318 318 default=None,
319 319 )
320 320 coreconfigitem(
321 321 b'command-templates',
322 322 b'oneline-summary.*',
323 323 default=dynamicdefault,
324 324 generic=True,
325 325 )
326 326 _registerdiffopts(section=b'commands', configprefix=b'commit.interactive.')
327 327 coreconfigitem(
328 328 b'commands',
329 329 b'commit.post-status',
330 330 default=False,
331 331 )
332 332 coreconfigitem(
333 333 b'commands',
334 334 b'grep.all-files',
335 335 default=False,
336 336 experimental=True,
337 337 )
338 338 coreconfigitem(
339 339 b'commands',
340 340 b'merge.require-rev',
341 341 default=False,
342 342 )
343 343 coreconfigitem(
344 344 b'commands',
345 345 b'push.require-revs',
346 346 default=False,
347 347 )
348 348 coreconfigitem(
349 349 b'commands',
350 350 b'resolve.confirm',
351 351 default=False,
352 352 )
353 353 coreconfigitem(
354 354 b'commands',
355 355 b'resolve.explicit-re-merge',
356 356 default=False,
357 357 )
358 358 coreconfigitem(
359 359 b'commands',
360 360 b'resolve.mark-check',
361 361 default=b'none',
362 362 )
363 363 _registerdiffopts(section=b'commands', configprefix=b'revert.interactive.')
364 364 coreconfigitem(
365 365 b'commands',
366 366 b'show.aliasprefix',
367 367 default=list,
368 368 )
369 369 coreconfigitem(
370 370 b'commands',
371 371 b'status.relative',
372 372 default=False,
373 373 )
374 374 coreconfigitem(
375 375 b'commands',
376 376 b'status.skipstates',
377 377 default=[],
378 378 experimental=True,
379 379 )
380 380 coreconfigitem(
381 381 b'commands',
382 382 b'status.terse',
383 383 default=b'',
384 384 )
385 385 coreconfigitem(
386 386 b'commands',
387 387 b'status.verbose',
388 388 default=False,
389 389 )
390 390 coreconfigitem(
391 391 b'commands',
392 392 b'update.check',
393 393 default=None,
394 394 )
395 395 coreconfigitem(
396 396 b'commands',
397 397 b'update.requiredest',
398 398 default=False,
399 399 )
400 400 coreconfigitem(
401 401 b'committemplate',
402 402 b'.*',
403 403 default=None,
404 404 generic=True,
405 405 )
406 406 coreconfigitem(
407 407 b'convert',
408 408 b'bzr.saverev',
409 409 default=True,
410 410 )
411 411 coreconfigitem(
412 412 b'convert',
413 413 b'cvsps.cache',
414 414 default=True,
415 415 )
416 416 coreconfigitem(
417 417 b'convert',
418 418 b'cvsps.fuzz',
419 419 default=60,
420 420 )
421 421 coreconfigitem(
422 422 b'convert',
423 423 b'cvsps.logencoding',
424 424 default=None,
425 425 )
426 426 coreconfigitem(
427 427 b'convert',
428 428 b'cvsps.mergefrom',
429 429 default=None,
430 430 )
431 431 coreconfigitem(
432 432 b'convert',
433 433 b'cvsps.mergeto',
434 434 default=None,
435 435 )
436 436 coreconfigitem(
437 437 b'convert',
438 438 b'git.committeractions',
439 439 default=lambda: [b'messagedifferent'],
440 440 )
441 441 coreconfigitem(
442 442 b'convert',
443 443 b'git.extrakeys',
444 444 default=list,
445 445 )
446 446 coreconfigitem(
447 447 b'convert',
448 448 b'git.findcopiesharder',
449 449 default=False,
450 450 )
451 451 coreconfigitem(
452 452 b'convert',
453 453 b'git.remoteprefix',
454 454 default=b'remote',
455 455 )
456 456 coreconfigitem(
457 457 b'convert',
458 458 b'git.renamelimit',
459 459 default=400,
460 460 )
461 461 coreconfigitem(
462 462 b'convert',
463 463 b'git.saverev',
464 464 default=True,
465 465 )
466 466 coreconfigitem(
467 467 b'convert',
468 468 b'git.similarity',
469 469 default=50,
470 470 )
471 471 coreconfigitem(
472 472 b'convert',
473 473 b'git.skipsubmodules',
474 474 default=False,
475 475 )
476 476 coreconfigitem(
477 477 b'convert',
478 478 b'hg.clonebranches',
479 479 default=False,
480 480 )
481 481 coreconfigitem(
482 482 b'convert',
483 483 b'hg.ignoreerrors',
484 484 default=False,
485 485 )
486 486 coreconfigitem(
487 487 b'convert',
488 488 b'hg.preserve-hash',
489 489 default=False,
490 490 )
491 491 coreconfigitem(
492 492 b'convert',
493 493 b'hg.revs',
494 494 default=None,
495 495 )
496 496 coreconfigitem(
497 497 b'convert',
498 498 b'hg.saverev',
499 499 default=False,
500 500 )
501 501 coreconfigitem(
502 502 b'convert',
503 503 b'hg.sourcename',
504 504 default=None,
505 505 )
506 506 coreconfigitem(
507 507 b'convert',
508 508 b'hg.startrev',
509 509 default=None,
510 510 )
511 511 coreconfigitem(
512 512 b'convert',
513 513 b'hg.tagsbranch',
514 514 default=b'default',
515 515 )
516 516 coreconfigitem(
517 517 b'convert',
518 518 b'hg.usebranchnames',
519 519 default=True,
520 520 )
521 521 coreconfigitem(
522 522 b'convert',
523 523 b'ignoreancestorcheck',
524 524 default=False,
525 525 experimental=True,
526 526 )
527 527 coreconfigitem(
528 528 b'convert',
529 529 b'localtimezone',
530 530 default=False,
531 531 )
532 532 coreconfigitem(
533 533 b'convert',
534 534 b'p4.encoding',
535 535 default=dynamicdefault,
536 536 )
537 537 coreconfigitem(
538 538 b'convert',
539 539 b'p4.startrev',
540 540 default=0,
541 541 )
542 542 coreconfigitem(
543 543 b'convert',
544 544 b'skiptags',
545 545 default=False,
546 546 )
547 547 coreconfigitem(
548 548 b'convert',
549 549 b'svn.debugsvnlog',
550 550 default=True,
551 551 )
552 552 coreconfigitem(
553 553 b'convert',
554 554 b'svn.trunk',
555 555 default=None,
556 556 )
557 557 coreconfigitem(
558 558 b'convert',
559 559 b'svn.tags',
560 560 default=None,
561 561 )
562 562 coreconfigitem(
563 563 b'convert',
564 564 b'svn.branches',
565 565 default=None,
566 566 )
567 567 coreconfigitem(
568 568 b'convert',
569 569 b'svn.startrev',
570 570 default=0,
571 571 )
572 572 coreconfigitem(
573 573 b'debug',
574 574 b'dirstate.delaywrite',
575 575 default=0,
576 576 )
577 577 coreconfigitem(
578 578 b'defaults',
579 579 b'.*',
580 580 default=None,
581 581 generic=True,
582 582 )
583 583 coreconfigitem(
584 584 b'devel',
585 585 b'all-warnings',
586 586 default=False,
587 587 )
588 588 coreconfigitem(
589 589 b'devel',
590 590 b'bundle2.debug',
591 591 default=False,
592 592 )
593 593 coreconfigitem(
594 594 b'devel',
595 595 b'bundle.delta',
596 596 default=b'',
597 597 )
598 598 coreconfigitem(
599 599 b'devel',
600 600 b'cache-vfs',
601 601 default=None,
602 602 )
603 603 coreconfigitem(
604 604 b'devel',
605 605 b'check-locks',
606 606 default=False,
607 607 )
608 608 coreconfigitem(
609 609 b'devel',
610 610 b'check-relroot',
611 611 default=False,
612 612 )
613 613 coreconfigitem(
614 614 b'devel',
615 615 b'default-date',
616 616 default=None,
617 617 )
618 618 coreconfigitem(
619 619 b'devel',
620 620 b'deprec-warn',
621 621 default=False,
622 622 )
623 623 coreconfigitem(
624 624 b'devel',
625 625 b'disableloaddefaultcerts',
626 626 default=False,
627 627 )
628 628 coreconfigitem(
629 629 b'devel',
630 630 b'warn-empty-changegroup',
631 631 default=False,
632 632 )
633 633 coreconfigitem(
634 634 b'devel',
635 635 b'legacy.exchange',
636 636 default=list,
637 637 )
638 638 # When True, revlogs use a special reference version of the nodemap, that is not
639 639 # performant but is "known" to behave properly.
640 640 coreconfigitem(
641 641 b'devel',
642 642 b'persistent-nodemap',
643 643 default=False,
644 644 )
645 645 coreconfigitem(
646 646 b'devel',
647 647 b'servercafile',
648 648 default=b'',
649 649 )
650 650 coreconfigitem(
651 651 b'devel',
652 652 b'serverexactprotocol',
653 653 default=b'',
654 654 )
655 655 coreconfigitem(
656 656 b'devel',
657 657 b'serverrequirecert',
658 658 default=False,
659 659 )
660 660 coreconfigitem(
661 661 b'devel',
662 662 b'strip-obsmarkers',
663 663 default=True,
664 664 )
665 665 coreconfigitem(
666 666 b'devel',
667 667 b'warn-config',
668 668 default=None,
669 669 )
670 670 coreconfigitem(
671 671 b'devel',
672 672 b'warn-config-default',
673 673 default=None,
674 674 )
675 675 coreconfigitem(
676 676 b'devel',
677 677 b'user.obsmarker',
678 678 default=None,
679 679 )
680 680 coreconfigitem(
681 681 b'devel',
682 682 b'warn-config-unknown',
683 683 default=None,
684 684 )
685 685 coreconfigitem(
686 686 b'devel',
687 687 b'debug.copies',
688 688 default=False,
689 689 )
690 690 coreconfigitem(
691 691 b'devel',
692 692 b'debug.extensions',
693 693 default=False,
694 694 )
695 695 coreconfigitem(
696 696 b'devel',
697 697 b'debug.repo-filters',
698 698 default=False,
699 699 )
700 700 coreconfigitem(
701 701 b'devel',
702 702 b'debug.peer-request',
703 703 default=False,
704 704 )
705 # If discovery.exchange-heads is False, the discovery will not start with
706 # remote head fetching and local head querying.
707 coreconfigitem(
708 b'devel',
709 b'discovery.exchange-heads',
710 default=True,
711 )
705 712 # If discovery.grow-sample is False, the sample size used in set discovery will
706 713 # not be increased through the process
707 714 coreconfigitem(
708 715 b'devel',
709 716 b'discovery.grow-sample',
710 717 default=True,
711 718 )
712 719 # discovery.grow-sample.rate control the rate at which the sample grow
713 720 coreconfigitem(
714 721 b'devel',
715 722 b'discovery.grow-sample.rate',
716 723 default=1.05,
717 724 )
718 725 # If discovery.randomize is False, random sampling during discovery are
719 726 # deterministic. It is meant for integration tests.
720 727 coreconfigitem(
721 728 b'devel',
722 729 b'discovery.randomize',
723 730 default=True,
724 731 )
725 732 _registerdiffopts(section=b'diff')
726 733 coreconfigitem(
727 734 b'email',
728 735 b'bcc',
729 736 default=None,
730 737 )
731 738 coreconfigitem(
732 739 b'email',
733 740 b'cc',
734 741 default=None,
735 742 )
736 743 coreconfigitem(
737 744 b'email',
738 745 b'charsets',
739 746 default=list,
740 747 )
741 748 coreconfigitem(
742 749 b'email',
743 750 b'from',
744 751 default=None,
745 752 )
746 753 coreconfigitem(
747 754 b'email',
748 755 b'method',
749 756 default=b'smtp',
750 757 )
751 758 coreconfigitem(
752 759 b'email',
753 760 b'reply-to',
754 761 default=None,
755 762 )
756 763 coreconfigitem(
757 764 b'email',
758 765 b'to',
759 766 default=None,
760 767 )
761 768 coreconfigitem(
762 769 b'experimental',
763 770 b'archivemetatemplate',
764 771 default=dynamicdefault,
765 772 )
766 773 coreconfigitem(
767 774 b'experimental',
768 775 b'auto-publish',
769 776 default=b'publish',
770 777 )
771 778 coreconfigitem(
772 779 b'experimental',
773 780 b'bundle-phases',
774 781 default=False,
775 782 )
776 783 coreconfigitem(
777 784 b'experimental',
778 785 b'bundle2-advertise',
779 786 default=True,
780 787 )
781 788 coreconfigitem(
782 789 b'experimental',
783 790 b'bundle2-output-capture',
784 791 default=False,
785 792 )
786 793 coreconfigitem(
787 794 b'experimental',
788 795 b'bundle2.pushback',
789 796 default=False,
790 797 )
791 798 coreconfigitem(
792 799 b'experimental',
793 800 b'bundle2lazylocking',
794 801 default=False,
795 802 )
796 803 coreconfigitem(
797 804 b'experimental',
798 805 b'bundlecomplevel',
799 806 default=None,
800 807 )
801 808 coreconfigitem(
802 809 b'experimental',
803 810 b'bundlecomplevel.bzip2',
804 811 default=None,
805 812 )
806 813 coreconfigitem(
807 814 b'experimental',
808 815 b'bundlecomplevel.gzip',
809 816 default=None,
810 817 )
811 818 coreconfigitem(
812 819 b'experimental',
813 820 b'bundlecomplevel.none',
814 821 default=None,
815 822 )
816 823 coreconfigitem(
817 824 b'experimental',
818 825 b'bundlecomplevel.zstd',
819 826 default=None,
820 827 )
821 828 coreconfigitem(
822 829 b'experimental',
823 830 b'changegroup3',
824 831 default=False,
825 832 )
826 833 coreconfigitem(
827 834 b'experimental',
828 835 b'cleanup-as-archived',
829 836 default=False,
830 837 )
831 838 coreconfigitem(
832 839 b'experimental',
833 840 b'clientcompressionengines',
834 841 default=list,
835 842 )
836 843 coreconfigitem(
837 844 b'experimental',
838 845 b'copytrace',
839 846 default=b'on',
840 847 )
841 848 coreconfigitem(
842 849 b'experimental',
843 850 b'copytrace.movecandidateslimit',
844 851 default=100,
845 852 )
846 853 coreconfigitem(
847 854 b'experimental',
848 855 b'copytrace.sourcecommitlimit',
849 856 default=100,
850 857 )
851 858 coreconfigitem(
852 859 b'experimental',
853 860 b'copies.read-from',
854 861 default=b"filelog-only",
855 862 )
856 863 coreconfigitem(
857 864 b'experimental',
858 865 b'copies.write-to',
859 866 default=b'filelog-only',
860 867 )
861 868 coreconfigitem(
862 869 b'experimental',
863 870 b'crecordtest',
864 871 default=None,
865 872 )
866 873 coreconfigitem(
867 874 b'experimental',
868 875 b'directaccess',
869 876 default=False,
870 877 )
871 878 coreconfigitem(
872 879 b'experimental',
873 880 b'directaccess.revnums',
874 881 default=False,
875 882 )
876 883 coreconfigitem(
877 884 b'experimental',
878 885 b'editortmpinhg',
879 886 default=False,
880 887 )
881 888 coreconfigitem(
882 889 b'experimental',
883 890 b'evolution',
884 891 default=list,
885 892 )
886 893 coreconfigitem(
887 894 b'experimental',
888 895 b'evolution.allowdivergence',
889 896 default=False,
890 897 alias=[(b'experimental', b'allowdivergence')],
891 898 )
892 899 coreconfigitem(
893 900 b'experimental',
894 901 b'evolution.allowunstable',
895 902 default=None,
896 903 )
897 904 coreconfigitem(
898 905 b'experimental',
899 906 b'evolution.createmarkers',
900 907 default=None,
901 908 )
902 909 coreconfigitem(
903 910 b'experimental',
904 911 b'evolution.effect-flags',
905 912 default=True,
906 913 alias=[(b'experimental', b'effect-flags')],
907 914 )
908 915 coreconfigitem(
909 916 b'experimental',
910 917 b'evolution.exchange',
911 918 default=None,
912 919 )
913 920 coreconfigitem(
914 921 b'experimental',
915 922 b'evolution.bundle-obsmarker',
916 923 default=False,
917 924 )
918 925 coreconfigitem(
919 926 b'experimental',
920 927 b'evolution.bundle-obsmarker:mandatory',
921 928 default=True,
922 929 )
923 930 coreconfigitem(
924 931 b'experimental',
925 932 b'log.topo',
926 933 default=False,
927 934 )
928 935 coreconfigitem(
929 936 b'experimental',
930 937 b'evolution.report-instabilities',
931 938 default=True,
932 939 )
933 940 coreconfigitem(
934 941 b'experimental',
935 942 b'evolution.track-operation',
936 943 default=True,
937 944 )
938 945 # repo-level config to exclude a revset visibility
939 946 #
940 947 # The target use case is to use `share` to expose different subset of the same
941 948 # repository, especially server side. See also `server.view`.
942 949 coreconfigitem(
943 950 b'experimental',
944 951 b'extra-filter-revs',
945 952 default=None,
946 953 )
947 954 coreconfigitem(
948 955 b'experimental',
949 956 b'maxdeltachainspan',
950 957 default=-1,
951 958 )
952 959 # tracks files which were undeleted (merge might delete them but we explicitly
953 960 # kept/undeleted them) and creates new filenodes for them
954 961 coreconfigitem(
955 962 b'experimental',
956 963 b'merge-track-salvaged',
957 964 default=False,
958 965 )
959 966 coreconfigitem(
960 967 b'experimental',
961 968 b'mergetempdirprefix',
962 969 default=None,
963 970 )
964 971 coreconfigitem(
965 972 b'experimental',
966 973 b'mmapindexthreshold',
967 974 default=None,
968 975 )
969 976 coreconfigitem(
970 977 b'experimental',
971 978 b'narrow',
972 979 default=False,
973 980 )
974 981 coreconfigitem(
975 982 b'experimental',
976 983 b'nonnormalparanoidcheck',
977 984 default=False,
978 985 )
979 986 coreconfigitem(
980 987 b'experimental',
981 988 b'exportableenviron',
982 989 default=list,
983 990 )
984 991 coreconfigitem(
985 992 b'experimental',
986 993 b'extendedheader.index',
987 994 default=None,
988 995 )
989 996 coreconfigitem(
990 997 b'experimental',
991 998 b'extendedheader.similarity',
992 999 default=False,
993 1000 )
994 1001 coreconfigitem(
995 1002 b'experimental',
996 1003 b'graphshorten',
997 1004 default=False,
998 1005 )
999 1006 coreconfigitem(
1000 1007 b'experimental',
1001 1008 b'graphstyle.parent',
1002 1009 default=dynamicdefault,
1003 1010 )
1004 1011 coreconfigitem(
1005 1012 b'experimental',
1006 1013 b'graphstyle.missing',
1007 1014 default=dynamicdefault,
1008 1015 )
1009 1016 coreconfigitem(
1010 1017 b'experimental',
1011 1018 b'graphstyle.grandparent',
1012 1019 default=dynamicdefault,
1013 1020 )
1014 1021 coreconfigitem(
1015 1022 b'experimental',
1016 1023 b'hook-track-tags',
1017 1024 default=False,
1018 1025 )
1019 1026 coreconfigitem(
1020 1027 b'experimental',
1021 1028 b'httppeer.advertise-v2',
1022 1029 default=False,
1023 1030 )
1024 1031 coreconfigitem(
1025 1032 b'experimental',
1026 1033 b'httppeer.v2-encoder-order',
1027 1034 default=None,
1028 1035 )
1029 1036 coreconfigitem(
1030 1037 b'experimental',
1031 1038 b'httppostargs',
1032 1039 default=False,
1033 1040 )
1034 1041 coreconfigitem(b'experimental', b'nointerrupt', default=False)
1035 1042 coreconfigitem(b'experimental', b'nointerrupt-interactiveonly', default=True)
1036 1043
1037 1044 coreconfigitem(
1038 1045 b'experimental',
1039 1046 b'obsmarkers-exchange-debug',
1040 1047 default=False,
1041 1048 )
1042 1049 coreconfigitem(
1043 1050 b'experimental',
1044 1051 b'remotenames',
1045 1052 default=False,
1046 1053 )
1047 1054 coreconfigitem(
1048 1055 b'experimental',
1049 1056 b'removeemptydirs',
1050 1057 default=True,
1051 1058 )
1052 1059 coreconfigitem(
1053 1060 b'experimental',
1054 1061 b'revert.interactive.select-to-keep',
1055 1062 default=False,
1056 1063 )
1057 1064 coreconfigitem(
1058 1065 b'experimental',
1059 1066 b'revisions.prefixhexnode',
1060 1067 default=False,
1061 1068 )
1062 1069 coreconfigitem(
1063 1070 b'experimental',
1064 1071 b'revlogv2',
1065 1072 default=None,
1066 1073 )
1067 1074 coreconfigitem(
1068 1075 b'experimental',
1069 1076 b'revisions.disambiguatewithin',
1070 1077 default=None,
1071 1078 )
1072 1079 coreconfigitem(
1073 1080 b'experimental',
1074 1081 b'rust.index',
1075 1082 default=False,
1076 1083 )
1077 1084 coreconfigitem(
1078 1085 b'experimental',
1079 1086 b'server.filesdata.recommended-batch-size',
1080 1087 default=50000,
1081 1088 )
1082 1089 coreconfigitem(
1083 1090 b'experimental',
1084 1091 b'server.manifestdata.recommended-batch-size',
1085 1092 default=100000,
1086 1093 )
1087 1094 coreconfigitem(
1088 1095 b'experimental',
1089 1096 b'server.stream-narrow-clones',
1090 1097 default=False,
1091 1098 )
1092 1099 coreconfigitem(
1093 1100 b'experimental',
1094 1101 b'sharesafe-auto-downgrade-shares',
1095 1102 default=False,
1096 1103 )
1097 1104 coreconfigitem(
1098 1105 b'experimental',
1099 1106 b'sharesafe-auto-upgrade-shares',
1100 1107 default=False,
1101 1108 )
1102 1109 coreconfigitem(
1103 1110 b'experimental',
1104 1111 b'sharesafe-auto-upgrade-fail-error',
1105 1112 default=False,
1106 1113 )
1107 1114 coreconfigitem(
1108 1115 b'experimental',
1109 1116 b'sharesafe-warn-outdated-shares',
1110 1117 default=True,
1111 1118 )
1112 1119 coreconfigitem(
1113 1120 b'experimental',
1114 1121 b'single-head-per-branch',
1115 1122 default=False,
1116 1123 )
1117 1124 coreconfigitem(
1118 1125 b'experimental',
1119 1126 b'single-head-per-branch:account-closed-heads',
1120 1127 default=False,
1121 1128 )
1122 1129 coreconfigitem(
1123 1130 b'experimental',
1124 1131 b'single-head-per-branch:public-changes-only',
1125 1132 default=False,
1126 1133 )
1127 1134 coreconfigitem(
1128 1135 b'experimental',
1129 1136 b'sshserver.support-v2',
1130 1137 default=False,
1131 1138 )
1132 1139 coreconfigitem(
1133 1140 b'experimental',
1134 1141 b'sparse-read',
1135 1142 default=False,
1136 1143 )
1137 1144 coreconfigitem(
1138 1145 b'experimental',
1139 1146 b'sparse-read.density-threshold',
1140 1147 default=0.50,
1141 1148 )
1142 1149 coreconfigitem(
1143 1150 b'experimental',
1144 1151 b'sparse-read.min-gap-size',
1145 1152 default=b'65K',
1146 1153 )
1147 1154 coreconfigitem(
1148 1155 b'experimental',
1149 1156 b'treemanifest',
1150 1157 default=False,
1151 1158 )
1152 1159 coreconfigitem(
1153 1160 b'experimental',
1154 1161 b'update.atomic-file',
1155 1162 default=False,
1156 1163 )
1157 1164 coreconfigitem(
1158 1165 b'experimental',
1159 1166 b'sshpeer.advertise-v2',
1160 1167 default=False,
1161 1168 )
1162 1169 coreconfigitem(
1163 1170 b'experimental',
1164 1171 b'web.apiserver',
1165 1172 default=False,
1166 1173 )
1167 1174 coreconfigitem(
1168 1175 b'experimental',
1169 1176 b'web.api.http-v2',
1170 1177 default=False,
1171 1178 )
1172 1179 coreconfigitem(
1173 1180 b'experimental',
1174 1181 b'web.api.debugreflect',
1175 1182 default=False,
1176 1183 )
1177 1184 coreconfigitem(
1178 1185 b'experimental',
1179 1186 b'worker.wdir-get-thread-safe',
1180 1187 default=False,
1181 1188 )
1182 1189 coreconfigitem(
1183 1190 b'experimental',
1184 1191 b'worker.repository-upgrade',
1185 1192 default=False,
1186 1193 )
1187 1194 coreconfigitem(
1188 1195 b'experimental',
1189 1196 b'xdiff',
1190 1197 default=False,
1191 1198 )
1192 1199 coreconfigitem(
1193 1200 b'extensions',
1194 1201 b'.*',
1195 1202 default=None,
1196 1203 generic=True,
1197 1204 )
1198 1205 coreconfigitem(
1199 1206 b'extdata',
1200 1207 b'.*',
1201 1208 default=None,
1202 1209 generic=True,
1203 1210 )
1204 1211 coreconfigitem(
1205 1212 b'format',
1206 1213 b'bookmarks-in-store',
1207 1214 default=False,
1208 1215 )
1209 1216 coreconfigitem(
1210 1217 b'format',
1211 1218 b'chunkcachesize',
1212 1219 default=None,
1213 1220 experimental=True,
1214 1221 )
1215 1222 coreconfigitem(
1216 1223 b'format',
1217 1224 b'dotencode',
1218 1225 default=True,
1219 1226 )
1220 1227 coreconfigitem(
1221 1228 b'format',
1222 1229 b'generaldelta',
1223 1230 default=False,
1224 1231 experimental=True,
1225 1232 )
1226 1233 coreconfigitem(
1227 1234 b'format',
1228 1235 b'manifestcachesize',
1229 1236 default=None,
1230 1237 experimental=True,
1231 1238 )
1232 1239 coreconfigitem(
1233 1240 b'format',
1234 1241 b'maxchainlen',
1235 1242 default=dynamicdefault,
1236 1243 experimental=True,
1237 1244 )
1238 1245 coreconfigitem(
1239 1246 b'format',
1240 1247 b'obsstore-version',
1241 1248 default=None,
1242 1249 )
1243 1250 coreconfigitem(
1244 1251 b'format',
1245 1252 b'sparse-revlog',
1246 1253 default=True,
1247 1254 )
1248 1255 coreconfigitem(
1249 1256 b'format',
1250 1257 b'revlog-compression',
1251 1258 default=lambda: [b'zlib'],
1252 1259 alias=[(b'experimental', b'format.compression')],
1253 1260 )
1254 1261 coreconfigitem(
1255 1262 b'format',
1256 1263 b'usefncache',
1257 1264 default=True,
1258 1265 )
1259 1266 coreconfigitem(
1260 1267 b'format',
1261 1268 b'usegeneraldelta',
1262 1269 default=True,
1263 1270 )
1264 1271 coreconfigitem(
1265 1272 b'format',
1266 1273 b'usestore',
1267 1274 default=True,
1268 1275 )
1269 1276 coreconfigitem(
1270 1277 b'format',
1271 1278 b'use-persistent-nodemap',
1272 1279 default=False,
1273 1280 )
1274 1281 coreconfigitem(
1275 1282 b'format',
1276 1283 b'exp-use-copies-side-data-changeset',
1277 1284 default=False,
1278 1285 experimental=True,
1279 1286 )
1280 1287 coreconfigitem(
1281 1288 b'format',
1282 1289 b'exp-use-side-data',
1283 1290 default=False,
1284 1291 experimental=True,
1285 1292 )
1286 1293 coreconfigitem(
1287 1294 b'format',
1288 1295 b'exp-share-safe',
1289 1296 default=False,
1290 1297 experimental=True,
1291 1298 )
1292 1299 coreconfigitem(
1293 1300 b'format',
1294 1301 b'internal-phase',
1295 1302 default=False,
1296 1303 experimental=True,
1297 1304 )
1298 1305 coreconfigitem(
1299 1306 b'fsmonitor',
1300 1307 b'warn_when_unused',
1301 1308 default=True,
1302 1309 )
1303 1310 coreconfigitem(
1304 1311 b'fsmonitor',
1305 1312 b'warn_update_file_count',
1306 1313 default=50000,
1307 1314 )
1308 1315 coreconfigitem(
1309 1316 b'fsmonitor',
1310 1317 b'warn_update_file_count_rust',
1311 1318 default=400000,
1312 1319 )
1313 1320 coreconfigitem(
1314 1321 b'help',
1315 1322 br'hidden-command\..*',
1316 1323 default=False,
1317 1324 generic=True,
1318 1325 )
1319 1326 coreconfigitem(
1320 1327 b'help',
1321 1328 br'hidden-topic\..*',
1322 1329 default=False,
1323 1330 generic=True,
1324 1331 )
1325 1332 coreconfigitem(
1326 1333 b'hooks',
1327 1334 b'.*',
1328 1335 default=dynamicdefault,
1329 1336 generic=True,
1330 1337 )
1331 1338 coreconfigitem(
1332 1339 b'hgweb-paths',
1333 1340 b'.*',
1334 1341 default=list,
1335 1342 generic=True,
1336 1343 )
1337 1344 coreconfigitem(
1338 1345 b'hostfingerprints',
1339 1346 b'.*',
1340 1347 default=list,
1341 1348 generic=True,
1342 1349 )
1343 1350 coreconfigitem(
1344 1351 b'hostsecurity',
1345 1352 b'ciphers',
1346 1353 default=None,
1347 1354 )
1348 1355 coreconfigitem(
1349 1356 b'hostsecurity',
1350 1357 b'minimumprotocol',
1351 1358 default=dynamicdefault,
1352 1359 )
1353 1360 coreconfigitem(
1354 1361 b'hostsecurity',
1355 1362 b'.*:minimumprotocol$',
1356 1363 default=dynamicdefault,
1357 1364 generic=True,
1358 1365 )
1359 1366 coreconfigitem(
1360 1367 b'hostsecurity',
1361 1368 b'.*:ciphers$',
1362 1369 default=dynamicdefault,
1363 1370 generic=True,
1364 1371 )
1365 1372 coreconfigitem(
1366 1373 b'hostsecurity',
1367 1374 b'.*:fingerprints$',
1368 1375 default=list,
1369 1376 generic=True,
1370 1377 )
1371 1378 coreconfigitem(
1372 1379 b'hostsecurity',
1373 1380 b'.*:verifycertsfile$',
1374 1381 default=None,
1375 1382 generic=True,
1376 1383 )
1377 1384
1378 1385 coreconfigitem(
1379 1386 b'http_proxy',
1380 1387 b'always',
1381 1388 default=False,
1382 1389 )
1383 1390 coreconfigitem(
1384 1391 b'http_proxy',
1385 1392 b'host',
1386 1393 default=None,
1387 1394 )
1388 1395 coreconfigitem(
1389 1396 b'http_proxy',
1390 1397 b'no',
1391 1398 default=list,
1392 1399 )
1393 1400 coreconfigitem(
1394 1401 b'http_proxy',
1395 1402 b'passwd',
1396 1403 default=None,
1397 1404 )
1398 1405 coreconfigitem(
1399 1406 b'http_proxy',
1400 1407 b'user',
1401 1408 default=None,
1402 1409 )
1403 1410
1404 1411 coreconfigitem(
1405 1412 b'http',
1406 1413 b'timeout',
1407 1414 default=None,
1408 1415 )
1409 1416
1410 1417 coreconfigitem(
1411 1418 b'logtoprocess',
1412 1419 b'commandexception',
1413 1420 default=None,
1414 1421 )
1415 1422 coreconfigitem(
1416 1423 b'logtoprocess',
1417 1424 b'commandfinish',
1418 1425 default=None,
1419 1426 )
1420 1427 coreconfigitem(
1421 1428 b'logtoprocess',
1422 1429 b'command',
1423 1430 default=None,
1424 1431 )
1425 1432 coreconfigitem(
1426 1433 b'logtoprocess',
1427 1434 b'develwarn',
1428 1435 default=None,
1429 1436 )
1430 1437 coreconfigitem(
1431 1438 b'logtoprocess',
1432 1439 b'uiblocked',
1433 1440 default=None,
1434 1441 )
1435 1442 coreconfigitem(
1436 1443 b'merge',
1437 1444 b'checkunknown',
1438 1445 default=b'abort',
1439 1446 )
1440 1447 coreconfigitem(
1441 1448 b'merge',
1442 1449 b'checkignored',
1443 1450 default=b'abort',
1444 1451 )
1445 1452 coreconfigitem(
1446 1453 b'experimental',
1447 1454 b'merge.checkpathconflicts',
1448 1455 default=False,
1449 1456 )
1450 1457 coreconfigitem(
1451 1458 b'merge',
1452 1459 b'followcopies',
1453 1460 default=True,
1454 1461 )
1455 1462 coreconfigitem(
1456 1463 b'merge',
1457 1464 b'on-failure',
1458 1465 default=b'continue',
1459 1466 )
1460 1467 coreconfigitem(
1461 1468 b'merge',
1462 1469 b'preferancestor',
1463 1470 default=lambda: [b'*'],
1464 1471 experimental=True,
1465 1472 )
1466 1473 coreconfigitem(
1467 1474 b'merge',
1468 1475 b'strict-capability-check',
1469 1476 default=False,
1470 1477 )
1471 1478 coreconfigitem(
1472 1479 b'merge-tools',
1473 1480 b'.*',
1474 1481 default=None,
1475 1482 generic=True,
1476 1483 )
1477 1484 coreconfigitem(
1478 1485 b'merge-tools',
1479 1486 br'.*\.args$',
1480 1487 default=b"$local $base $other",
1481 1488 generic=True,
1482 1489 priority=-1,
1483 1490 )
1484 1491 coreconfigitem(
1485 1492 b'merge-tools',
1486 1493 br'.*\.binary$',
1487 1494 default=False,
1488 1495 generic=True,
1489 1496 priority=-1,
1490 1497 )
1491 1498 coreconfigitem(
1492 1499 b'merge-tools',
1493 1500 br'.*\.check$',
1494 1501 default=list,
1495 1502 generic=True,
1496 1503 priority=-1,
1497 1504 )
1498 1505 coreconfigitem(
1499 1506 b'merge-tools',
1500 1507 br'.*\.checkchanged$',
1501 1508 default=False,
1502 1509 generic=True,
1503 1510 priority=-1,
1504 1511 )
1505 1512 coreconfigitem(
1506 1513 b'merge-tools',
1507 1514 br'.*\.executable$',
1508 1515 default=dynamicdefault,
1509 1516 generic=True,
1510 1517 priority=-1,
1511 1518 )
1512 1519 coreconfigitem(
1513 1520 b'merge-tools',
1514 1521 br'.*\.fixeol$',
1515 1522 default=False,
1516 1523 generic=True,
1517 1524 priority=-1,
1518 1525 )
1519 1526 coreconfigitem(
1520 1527 b'merge-tools',
1521 1528 br'.*\.gui$',
1522 1529 default=False,
1523 1530 generic=True,
1524 1531 priority=-1,
1525 1532 )
1526 1533 coreconfigitem(
1527 1534 b'merge-tools',
1528 1535 br'.*\.mergemarkers$',
1529 1536 default=b'basic',
1530 1537 generic=True,
1531 1538 priority=-1,
1532 1539 )
1533 1540 coreconfigitem(
1534 1541 b'merge-tools',
1535 1542 br'.*\.mergemarkertemplate$',
1536 1543 default=dynamicdefault, # take from command-templates.mergemarker
1537 1544 generic=True,
1538 1545 priority=-1,
1539 1546 )
1540 1547 coreconfigitem(
1541 1548 b'merge-tools',
1542 1549 br'.*\.priority$',
1543 1550 default=0,
1544 1551 generic=True,
1545 1552 priority=-1,
1546 1553 )
1547 1554 coreconfigitem(
1548 1555 b'merge-tools',
1549 1556 br'.*\.premerge$',
1550 1557 default=dynamicdefault,
1551 1558 generic=True,
1552 1559 priority=-1,
1553 1560 )
1554 1561 coreconfigitem(
1555 1562 b'merge-tools',
1556 1563 br'.*\.symlink$',
1557 1564 default=False,
1558 1565 generic=True,
1559 1566 priority=-1,
1560 1567 )
1561 1568 coreconfigitem(
1562 1569 b'pager',
1563 1570 b'attend-.*',
1564 1571 default=dynamicdefault,
1565 1572 generic=True,
1566 1573 )
1567 1574 coreconfigitem(
1568 1575 b'pager',
1569 1576 b'ignore',
1570 1577 default=list,
1571 1578 )
1572 1579 coreconfigitem(
1573 1580 b'pager',
1574 1581 b'pager',
1575 1582 default=dynamicdefault,
1576 1583 )
1577 1584 coreconfigitem(
1578 1585 b'patch',
1579 1586 b'eol',
1580 1587 default=b'strict',
1581 1588 )
1582 1589 coreconfigitem(
1583 1590 b'patch',
1584 1591 b'fuzz',
1585 1592 default=2,
1586 1593 )
1587 1594 coreconfigitem(
1588 1595 b'paths',
1589 1596 b'default',
1590 1597 default=None,
1591 1598 )
1592 1599 coreconfigitem(
1593 1600 b'paths',
1594 1601 b'default-push',
1595 1602 default=None,
1596 1603 )
1597 1604 coreconfigitem(
1598 1605 b'paths',
1599 1606 b'.*',
1600 1607 default=None,
1601 1608 generic=True,
1602 1609 )
1603 1610 coreconfigitem(
1604 1611 b'phases',
1605 1612 b'checksubrepos',
1606 1613 default=b'follow',
1607 1614 )
1608 1615 coreconfigitem(
1609 1616 b'phases',
1610 1617 b'new-commit',
1611 1618 default=b'draft',
1612 1619 )
1613 1620 coreconfigitem(
1614 1621 b'phases',
1615 1622 b'publish',
1616 1623 default=True,
1617 1624 )
1618 1625 coreconfigitem(
1619 1626 b'profiling',
1620 1627 b'enabled',
1621 1628 default=False,
1622 1629 )
1623 1630 coreconfigitem(
1624 1631 b'profiling',
1625 1632 b'format',
1626 1633 default=b'text',
1627 1634 )
1628 1635 coreconfigitem(
1629 1636 b'profiling',
1630 1637 b'freq',
1631 1638 default=1000,
1632 1639 )
1633 1640 coreconfigitem(
1634 1641 b'profiling',
1635 1642 b'limit',
1636 1643 default=30,
1637 1644 )
1638 1645 coreconfigitem(
1639 1646 b'profiling',
1640 1647 b'nested',
1641 1648 default=0,
1642 1649 )
1643 1650 coreconfigitem(
1644 1651 b'profiling',
1645 1652 b'output',
1646 1653 default=None,
1647 1654 )
1648 1655 coreconfigitem(
1649 1656 b'profiling',
1650 1657 b'showmax',
1651 1658 default=0.999,
1652 1659 )
1653 1660 coreconfigitem(
1654 1661 b'profiling',
1655 1662 b'showmin',
1656 1663 default=dynamicdefault,
1657 1664 )
1658 1665 coreconfigitem(
1659 1666 b'profiling',
1660 1667 b'showtime',
1661 1668 default=True,
1662 1669 )
1663 1670 coreconfigitem(
1664 1671 b'profiling',
1665 1672 b'sort',
1666 1673 default=b'inlinetime',
1667 1674 )
1668 1675 coreconfigitem(
1669 1676 b'profiling',
1670 1677 b'statformat',
1671 1678 default=b'hotpath',
1672 1679 )
1673 1680 coreconfigitem(
1674 1681 b'profiling',
1675 1682 b'time-track',
1676 1683 default=dynamicdefault,
1677 1684 )
1678 1685 coreconfigitem(
1679 1686 b'profiling',
1680 1687 b'type',
1681 1688 default=b'stat',
1682 1689 )
1683 1690 coreconfigitem(
1684 1691 b'progress',
1685 1692 b'assume-tty',
1686 1693 default=False,
1687 1694 )
1688 1695 coreconfigitem(
1689 1696 b'progress',
1690 1697 b'changedelay',
1691 1698 default=1,
1692 1699 )
1693 1700 coreconfigitem(
1694 1701 b'progress',
1695 1702 b'clear-complete',
1696 1703 default=True,
1697 1704 )
1698 1705 coreconfigitem(
1699 1706 b'progress',
1700 1707 b'debug',
1701 1708 default=False,
1702 1709 )
1703 1710 coreconfigitem(
1704 1711 b'progress',
1705 1712 b'delay',
1706 1713 default=3,
1707 1714 )
1708 1715 coreconfigitem(
1709 1716 b'progress',
1710 1717 b'disable',
1711 1718 default=False,
1712 1719 )
1713 1720 coreconfigitem(
1714 1721 b'progress',
1715 1722 b'estimateinterval',
1716 1723 default=60.0,
1717 1724 )
1718 1725 coreconfigitem(
1719 1726 b'progress',
1720 1727 b'format',
1721 1728 default=lambda: [b'topic', b'bar', b'number', b'estimate'],
1722 1729 )
1723 1730 coreconfigitem(
1724 1731 b'progress',
1725 1732 b'refresh',
1726 1733 default=0.1,
1727 1734 )
1728 1735 coreconfigitem(
1729 1736 b'progress',
1730 1737 b'width',
1731 1738 default=dynamicdefault,
1732 1739 )
1733 1740 coreconfigitem(
1734 1741 b'pull',
1735 1742 b'confirm',
1736 1743 default=False,
1737 1744 )
1738 1745 coreconfigitem(
1739 1746 b'push',
1740 1747 b'pushvars.server',
1741 1748 default=False,
1742 1749 )
1743 1750 coreconfigitem(
1744 1751 b'rewrite',
1745 1752 b'backup-bundle',
1746 1753 default=True,
1747 1754 alias=[(b'ui', b'history-editing-backup')],
1748 1755 )
1749 1756 coreconfigitem(
1750 1757 b'rewrite',
1751 1758 b'update-timestamp',
1752 1759 default=False,
1753 1760 )
1754 1761 coreconfigitem(
1755 1762 b'rewrite',
1756 1763 b'empty-successor',
1757 1764 default=b'skip',
1758 1765 experimental=True,
1759 1766 )
1760 1767 coreconfigitem(
1761 1768 b'storage',
1762 1769 b'new-repo-backend',
1763 1770 default=b'revlogv1',
1764 1771 experimental=True,
1765 1772 )
1766 1773 coreconfigitem(
1767 1774 b'storage',
1768 1775 b'revlog.optimize-delta-parent-choice',
1769 1776 default=True,
1770 1777 alias=[(b'format', b'aggressivemergedeltas')],
1771 1778 )
1772 1779 # experimental as long as rust is experimental (or a C version is implemented)
1773 1780 coreconfigitem(
1774 1781 b'storage',
1775 1782 b'revlog.persistent-nodemap.mmap',
1776 1783 default=True,
1777 1784 )
1778 1785 # experimental as long as format.use-persistent-nodemap is.
1779 1786 coreconfigitem(
1780 1787 b'storage',
1781 1788 b'revlog.persistent-nodemap.slow-path',
1782 1789 default=b"abort",
1783 1790 )
1784 1791
1785 1792 coreconfigitem(
1786 1793 b'storage',
1787 1794 b'revlog.reuse-external-delta',
1788 1795 default=True,
1789 1796 )
1790 1797 coreconfigitem(
1791 1798 b'storage',
1792 1799 b'revlog.reuse-external-delta-parent',
1793 1800 default=None,
1794 1801 )
1795 1802 coreconfigitem(
1796 1803 b'storage',
1797 1804 b'revlog.zlib.level',
1798 1805 default=None,
1799 1806 )
1800 1807 coreconfigitem(
1801 1808 b'storage',
1802 1809 b'revlog.zstd.level',
1803 1810 default=None,
1804 1811 )
1805 1812 coreconfigitem(
1806 1813 b'server',
1807 1814 b'bookmarks-pushkey-compat',
1808 1815 default=True,
1809 1816 )
1810 1817 coreconfigitem(
1811 1818 b'server',
1812 1819 b'bundle1',
1813 1820 default=True,
1814 1821 )
1815 1822 coreconfigitem(
1816 1823 b'server',
1817 1824 b'bundle1gd',
1818 1825 default=None,
1819 1826 )
1820 1827 coreconfigitem(
1821 1828 b'server',
1822 1829 b'bundle1.pull',
1823 1830 default=None,
1824 1831 )
1825 1832 coreconfigitem(
1826 1833 b'server',
1827 1834 b'bundle1gd.pull',
1828 1835 default=None,
1829 1836 )
1830 1837 coreconfigitem(
1831 1838 b'server',
1832 1839 b'bundle1.push',
1833 1840 default=None,
1834 1841 )
1835 1842 coreconfigitem(
1836 1843 b'server',
1837 1844 b'bundle1gd.push',
1838 1845 default=None,
1839 1846 )
1840 1847 coreconfigitem(
1841 1848 b'server',
1842 1849 b'bundle2.stream',
1843 1850 default=True,
1844 1851 alias=[(b'experimental', b'bundle2.stream')],
1845 1852 )
1846 1853 coreconfigitem(
1847 1854 b'server',
1848 1855 b'compressionengines',
1849 1856 default=list,
1850 1857 )
1851 1858 coreconfigitem(
1852 1859 b'server',
1853 1860 b'concurrent-push-mode',
1854 1861 default=b'check-related',
1855 1862 )
1856 1863 coreconfigitem(
1857 1864 b'server',
1858 1865 b'disablefullbundle',
1859 1866 default=False,
1860 1867 )
1861 1868 coreconfigitem(
1862 1869 b'server',
1863 1870 b'maxhttpheaderlen',
1864 1871 default=1024,
1865 1872 )
1866 1873 coreconfigitem(
1867 1874 b'server',
1868 1875 b'pullbundle',
1869 1876 default=False,
1870 1877 )
1871 1878 coreconfigitem(
1872 1879 b'server',
1873 1880 b'preferuncompressed',
1874 1881 default=False,
1875 1882 )
1876 1883 coreconfigitem(
1877 1884 b'server',
1878 1885 b'streamunbundle',
1879 1886 default=False,
1880 1887 )
1881 1888 coreconfigitem(
1882 1889 b'server',
1883 1890 b'uncompressed',
1884 1891 default=True,
1885 1892 )
1886 1893 coreconfigitem(
1887 1894 b'server',
1888 1895 b'uncompressedallowsecret',
1889 1896 default=False,
1890 1897 )
1891 1898 coreconfigitem(
1892 1899 b'server',
1893 1900 b'view',
1894 1901 default=b'served',
1895 1902 )
1896 1903 coreconfigitem(
1897 1904 b'server',
1898 1905 b'validate',
1899 1906 default=False,
1900 1907 )
1901 1908 coreconfigitem(
1902 1909 b'server',
1903 1910 b'zliblevel',
1904 1911 default=-1,
1905 1912 )
1906 1913 coreconfigitem(
1907 1914 b'server',
1908 1915 b'zstdlevel',
1909 1916 default=3,
1910 1917 )
1911 1918 coreconfigitem(
1912 1919 b'share',
1913 1920 b'pool',
1914 1921 default=None,
1915 1922 )
1916 1923 coreconfigitem(
1917 1924 b'share',
1918 1925 b'poolnaming',
1919 1926 default=b'identity',
1920 1927 )
1921 1928 coreconfigitem(
1922 1929 b'shelve',
1923 1930 b'maxbackups',
1924 1931 default=10,
1925 1932 )
1926 1933 coreconfigitem(
1927 1934 b'smtp',
1928 1935 b'host',
1929 1936 default=None,
1930 1937 )
1931 1938 coreconfigitem(
1932 1939 b'smtp',
1933 1940 b'local_hostname',
1934 1941 default=None,
1935 1942 )
1936 1943 coreconfigitem(
1937 1944 b'smtp',
1938 1945 b'password',
1939 1946 default=None,
1940 1947 )
1941 1948 coreconfigitem(
1942 1949 b'smtp',
1943 1950 b'port',
1944 1951 default=dynamicdefault,
1945 1952 )
1946 1953 coreconfigitem(
1947 1954 b'smtp',
1948 1955 b'tls',
1949 1956 default=b'none',
1950 1957 )
1951 1958 coreconfigitem(
1952 1959 b'smtp',
1953 1960 b'username',
1954 1961 default=None,
1955 1962 )
1956 1963 coreconfigitem(
1957 1964 b'sparse',
1958 1965 b'missingwarning',
1959 1966 default=True,
1960 1967 experimental=True,
1961 1968 )
1962 1969 coreconfigitem(
1963 1970 b'subrepos',
1964 1971 b'allowed',
1965 1972 default=dynamicdefault, # to make backporting simpler
1966 1973 )
1967 1974 coreconfigitem(
1968 1975 b'subrepos',
1969 1976 b'hg:allowed',
1970 1977 default=dynamicdefault,
1971 1978 )
1972 1979 coreconfigitem(
1973 1980 b'subrepos',
1974 1981 b'git:allowed',
1975 1982 default=dynamicdefault,
1976 1983 )
1977 1984 coreconfigitem(
1978 1985 b'subrepos',
1979 1986 b'svn:allowed',
1980 1987 default=dynamicdefault,
1981 1988 )
1982 1989 coreconfigitem(
1983 1990 b'templates',
1984 1991 b'.*',
1985 1992 default=None,
1986 1993 generic=True,
1987 1994 )
1988 1995 coreconfigitem(
1989 1996 b'templateconfig',
1990 1997 b'.*',
1991 1998 default=dynamicdefault,
1992 1999 generic=True,
1993 2000 )
1994 2001 coreconfigitem(
1995 2002 b'trusted',
1996 2003 b'groups',
1997 2004 default=list,
1998 2005 )
1999 2006 coreconfigitem(
2000 2007 b'trusted',
2001 2008 b'users',
2002 2009 default=list,
2003 2010 )
2004 2011 coreconfigitem(
2005 2012 b'ui',
2006 2013 b'_usedassubrepo',
2007 2014 default=False,
2008 2015 )
2009 2016 coreconfigitem(
2010 2017 b'ui',
2011 2018 b'allowemptycommit',
2012 2019 default=False,
2013 2020 )
2014 2021 coreconfigitem(
2015 2022 b'ui',
2016 2023 b'archivemeta',
2017 2024 default=True,
2018 2025 )
2019 2026 coreconfigitem(
2020 2027 b'ui',
2021 2028 b'askusername',
2022 2029 default=False,
2023 2030 )
2024 2031 coreconfigitem(
2025 2032 b'ui',
2026 2033 b'available-memory',
2027 2034 default=None,
2028 2035 )
2029 2036
2030 2037 coreconfigitem(
2031 2038 b'ui',
2032 2039 b'clonebundlefallback',
2033 2040 default=False,
2034 2041 )
2035 2042 coreconfigitem(
2036 2043 b'ui',
2037 2044 b'clonebundleprefers',
2038 2045 default=list,
2039 2046 )
2040 2047 coreconfigitem(
2041 2048 b'ui',
2042 2049 b'clonebundles',
2043 2050 default=True,
2044 2051 )
2045 2052 coreconfigitem(
2046 2053 b'ui',
2047 2054 b'color',
2048 2055 default=b'auto',
2049 2056 )
2050 2057 coreconfigitem(
2051 2058 b'ui',
2052 2059 b'commitsubrepos',
2053 2060 default=False,
2054 2061 )
2055 2062 coreconfigitem(
2056 2063 b'ui',
2057 2064 b'debug',
2058 2065 default=False,
2059 2066 )
2060 2067 coreconfigitem(
2061 2068 b'ui',
2062 2069 b'debugger',
2063 2070 default=None,
2064 2071 )
2065 2072 coreconfigitem(
2066 2073 b'ui',
2067 2074 b'editor',
2068 2075 default=dynamicdefault,
2069 2076 )
2070 2077 coreconfigitem(
2071 2078 b'ui',
2072 2079 b'detailed-exit-code',
2073 2080 default=False,
2074 2081 experimental=True,
2075 2082 )
2076 2083 coreconfigitem(
2077 2084 b'ui',
2078 2085 b'fallbackencoding',
2079 2086 default=None,
2080 2087 )
2081 2088 coreconfigitem(
2082 2089 b'ui',
2083 2090 b'forcecwd',
2084 2091 default=None,
2085 2092 )
2086 2093 coreconfigitem(
2087 2094 b'ui',
2088 2095 b'forcemerge',
2089 2096 default=None,
2090 2097 )
2091 2098 coreconfigitem(
2092 2099 b'ui',
2093 2100 b'formatdebug',
2094 2101 default=False,
2095 2102 )
2096 2103 coreconfigitem(
2097 2104 b'ui',
2098 2105 b'formatjson',
2099 2106 default=False,
2100 2107 )
2101 2108 coreconfigitem(
2102 2109 b'ui',
2103 2110 b'formatted',
2104 2111 default=None,
2105 2112 )
2106 2113 coreconfigitem(
2107 2114 b'ui',
2108 2115 b'interactive',
2109 2116 default=None,
2110 2117 )
2111 2118 coreconfigitem(
2112 2119 b'ui',
2113 2120 b'interface',
2114 2121 default=None,
2115 2122 )
2116 2123 coreconfigitem(
2117 2124 b'ui',
2118 2125 b'interface.chunkselector',
2119 2126 default=None,
2120 2127 )
2121 2128 coreconfigitem(
2122 2129 b'ui',
2123 2130 b'large-file-limit',
2124 2131 default=10000000,
2125 2132 )
2126 2133 coreconfigitem(
2127 2134 b'ui',
2128 2135 b'logblockedtimes',
2129 2136 default=False,
2130 2137 )
2131 2138 coreconfigitem(
2132 2139 b'ui',
2133 2140 b'merge',
2134 2141 default=None,
2135 2142 )
2136 2143 coreconfigitem(
2137 2144 b'ui',
2138 2145 b'mergemarkers',
2139 2146 default=b'basic',
2140 2147 )
2141 2148 coreconfigitem(
2142 2149 b'ui',
2143 2150 b'message-output',
2144 2151 default=b'stdio',
2145 2152 )
2146 2153 coreconfigitem(
2147 2154 b'ui',
2148 2155 b'nontty',
2149 2156 default=False,
2150 2157 )
2151 2158 coreconfigitem(
2152 2159 b'ui',
2153 2160 b'origbackuppath',
2154 2161 default=None,
2155 2162 )
2156 2163 coreconfigitem(
2157 2164 b'ui',
2158 2165 b'paginate',
2159 2166 default=True,
2160 2167 )
2161 2168 coreconfigitem(
2162 2169 b'ui',
2163 2170 b'patch',
2164 2171 default=None,
2165 2172 )
2166 2173 coreconfigitem(
2167 2174 b'ui',
2168 2175 b'portablefilenames',
2169 2176 default=b'warn',
2170 2177 )
2171 2178 coreconfigitem(
2172 2179 b'ui',
2173 2180 b'promptecho',
2174 2181 default=False,
2175 2182 )
2176 2183 coreconfigitem(
2177 2184 b'ui',
2178 2185 b'quiet',
2179 2186 default=False,
2180 2187 )
2181 2188 coreconfigitem(
2182 2189 b'ui',
2183 2190 b'quietbookmarkmove',
2184 2191 default=False,
2185 2192 )
2186 2193 coreconfigitem(
2187 2194 b'ui',
2188 2195 b'relative-paths',
2189 2196 default=b'legacy',
2190 2197 )
2191 2198 coreconfigitem(
2192 2199 b'ui',
2193 2200 b'remotecmd',
2194 2201 default=b'hg',
2195 2202 )
2196 2203 coreconfigitem(
2197 2204 b'ui',
2198 2205 b'report_untrusted',
2199 2206 default=True,
2200 2207 )
2201 2208 coreconfigitem(
2202 2209 b'ui',
2203 2210 b'rollback',
2204 2211 default=True,
2205 2212 )
2206 2213 coreconfigitem(
2207 2214 b'ui',
2208 2215 b'signal-safe-lock',
2209 2216 default=True,
2210 2217 )
2211 2218 coreconfigitem(
2212 2219 b'ui',
2213 2220 b'slash',
2214 2221 default=False,
2215 2222 )
2216 2223 coreconfigitem(
2217 2224 b'ui',
2218 2225 b'ssh',
2219 2226 default=b'ssh',
2220 2227 )
2221 2228 coreconfigitem(
2222 2229 b'ui',
2223 2230 b'ssherrorhint',
2224 2231 default=None,
2225 2232 )
2226 2233 coreconfigitem(
2227 2234 b'ui',
2228 2235 b'statuscopies',
2229 2236 default=False,
2230 2237 )
2231 2238 coreconfigitem(
2232 2239 b'ui',
2233 2240 b'strict',
2234 2241 default=False,
2235 2242 )
2236 2243 coreconfigitem(
2237 2244 b'ui',
2238 2245 b'style',
2239 2246 default=b'',
2240 2247 )
2241 2248 coreconfigitem(
2242 2249 b'ui',
2243 2250 b'supportcontact',
2244 2251 default=None,
2245 2252 )
2246 2253 coreconfigitem(
2247 2254 b'ui',
2248 2255 b'textwidth',
2249 2256 default=78,
2250 2257 )
2251 2258 coreconfigitem(
2252 2259 b'ui',
2253 2260 b'timeout',
2254 2261 default=b'600',
2255 2262 )
2256 2263 coreconfigitem(
2257 2264 b'ui',
2258 2265 b'timeout.warn',
2259 2266 default=0,
2260 2267 )
2261 2268 coreconfigitem(
2262 2269 b'ui',
2263 2270 b'timestamp-output',
2264 2271 default=False,
2265 2272 )
2266 2273 coreconfigitem(
2267 2274 b'ui',
2268 2275 b'traceback',
2269 2276 default=False,
2270 2277 )
2271 2278 coreconfigitem(
2272 2279 b'ui',
2273 2280 b'tweakdefaults',
2274 2281 default=False,
2275 2282 )
2276 2283 coreconfigitem(b'ui', b'username', alias=[(b'ui', b'user')])
2277 2284 coreconfigitem(
2278 2285 b'ui',
2279 2286 b'verbose',
2280 2287 default=False,
2281 2288 )
2282 2289 coreconfigitem(
2283 2290 b'verify',
2284 2291 b'skipflags',
2285 2292 default=None,
2286 2293 )
2287 2294 coreconfigitem(
2288 2295 b'web',
2289 2296 b'allowbz2',
2290 2297 default=False,
2291 2298 )
2292 2299 coreconfigitem(
2293 2300 b'web',
2294 2301 b'allowgz',
2295 2302 default=False,
2296 2303 )
2297 2304 coreconfigitem(
2298 2305 b'web',
2299 2306 b'allow-pull',
2300 2307 alias=[(b'web', b'allowpull')],
2301 2308 default=True,
2302 2309 )
2303 2310 coreconfigitem(
2304 2311 b'web',
2305 2312 b'allow-push',
2306 2313 alias=[(b'web', b'allow_push')],
2307 2314 default=list,
2308 2315 )
2309 2316 coreconfigitem(
2310 2317 b'web',
2311 2318 b'allowzip',
2312 2319 default=False,
2313 2320 )
2314 2321 coreconfigitem(
2315 2322 b'web',
2316 2323 b'archivesubrepos',
2317 2324 default=False,
2318 2325 )
2319 2326 coreconfigitem(
2320 2327 b'web',
2321 2328 b'cache',
2322 2329 default=True,
2323 2330 )
2324 2331 coreconfigitem(
2325 2332 b'web',
2326 2333 b'comparisoncontext',
2327 2334 default=5,
2328 2335 )
2329 2336 coreconfigitem(
2330 2337 b'web',
2331 2338 b'contact',
2332 2339 default=None,
2333 2340 )
2334 2341 coreconfigitem(
2335 2342 b'web',
2336 2343 b'deny_push',
2337 2344 default=list,
2338 2345 )
2339 2346 coreconfigitem(
2340 2347 b'web',
2341 2348 b'guessmime',
2342 2349 default=False,
2343 2350 )
2344 2351 coreconfigitem(
2345 2352 b'web',
2346 2353 b'hidden',
2347 2354 default=False,
2348 2355 )
2349 2356 coreconfigitem(
2350 2357 b'web',
2351 2358 b'labels',
2352 2359 default=list,
2353 2360 )
2354 2361 coreconfigitem(
2355 2362 b'web',
2356 2363 b'logoimg',
2357 2364 default=b'hglogo.png',
2358 2365 )
2359 2366 coreconfigitem(
2360 2367 b'web',
2361 2368 b'logourl',
2362 2369 default=b'https://mercurial-scm.org/',
2363 2370 )
2364 2371 coreconfigitem(
2365 2372 b'web',
2366 2373 b'accesslog',
2367 2374 default=b'-',
2368 2375 )
2369 2376 coreconfigitem(
2370 2377 b'web',
2371 2378 b'address',
2372 2379 default=b'',
2373 2380 )
2374 2381 coreconfigitem(
2375 2382 b'web',
2376 2383 b'allow-archive',
2377 2384 alias=[(b'web', b'allow_archive')],
2378 2385 default=list,
2379 2386 )
2380 2387 coreconfigitem(
2381 2388 b'web',
2382 2389 b'allow_read',
2383 2390 default=list,
2384 2391 )
2385 2392 coreconfigitem(
2386 2393 b'web',
2387 2394 b'baseurl',
2388 2395 default=None,
2389 2396 )
2390 2397 coreconfigitem(
2391 2398 b'web',
2392 2399 b'cacerts',
2393 2400 default=None,
2394 2401 )
2395 2402 coreconfigitem(
2396 2403 b'web',
2397 2404 b'certificate',
2398 2405 default=None,
2399 2406 )
2400 2407 coreconfigitem(
2401 2408 b'web',
2402 2409 b'collapse',
2403 2410 default=False,
2404 2411 )
2405 2412 coreconfigitem(
2406 2413 b'web',
2407 2414 b'csp',
2408 2415 default=None,
2409 2416 )
2410 2417 coreconfigitem(
2411 2418 b'web',
2412 2419 b'deny_read',
2413 2420 default=list,
2414 2421 )
2415 2422 coreconfigitem(
2416 2423 b'web',
2417 2424 b'descend',
2418 2425 default=True,
2419 2426 )
2420 2427 coreconfigitem(
2421 2428 b'web',
2422 2429 b'description',
2423 2430 default=b"",
2424 2431 )
2425 2432 coreconfigitem(
2426 2433 b'web',
2427 2434 b'encoding',
2428 2435 default=lambda: encoding.encoding,
2429 2436 )
2430 2437 coreconfigitem(
2431 2438 b'web',
2432 2439 b'errorlog',
2433 2440 default=b'-',
2434 2441 )
2435 2442 coreconfigitem(
2436 2443 b'web',
2437 2444 b'ipv6',
2438 2445 default=False,
2439 2446 )
2440 2447 coreconfigitem(
2441 2448 b'web',
2442 2449 b'maxchanges',
2443 2450 default=10,
2444 2451 )
2445 2452 coreconfigitem(
2446 2453 b'web',
2447 2454 b'maxfiles',
2448 2455 default=10,
2449 2456 )
2450 2457 coreconfigitem(
2451 2458 b'web',
2452 2459 b'maxshortchanges',
2453 2460 default=60,
2454 2461 )
2455 2462 coreconfigitem(
2456 2463 b'web',
2457 2464 b'motd',
2458 2465 default=b'',
2459 2466 )
2460 2467 coreconfigitem(
2461 2468 b'web',
2462 2469 b'name',
2463 2470 default=dynamicdefault,
2464 2471 )
2465 2472 coreconfigitem(
2466 2473 b'web',
2467 2474 b'port',
2468 2475 default=8000,
2469 2476 )
2470 2477 coreconfigitem(
2471 2478 b'web',
2472 2479 b'prefix',
2473 2480 default=b'',
2474 2481 )
2475 2482 coreconfigitem(
2476 2483 b'web',
2477 2484 b'push_ssl',
2478 2485 default=True,
2479 2486 )
2480 2487 coreconfigitem(
2481 2488 b'web',
2482 2489 b'refreshinterval',
2483 2490 default=20,
2484 2491 )
2485 2492 coreconfigitem(
2486 2493 b'web',
2487 2494 b'server-header',
2488 2495 default=None,
2489 2496 )
2490 2497 coreconfigitem(
2491 2498 b'web',
2492 2499 b'static',
2493 2500 default=None,
2494 2501 )
2495 2502 coreconfigitem(
2496 2503 b'web',
2497 2504 b'staticurl',
2498 2505 default=None,
2499 2506 )
2500 2507 coreconfigitem(
2501 2508 b'web',
2502 2509 b'stripes',
2503 2510 default=1,
2504 2511 )
2505 2512 coreconfigitem(
2506 2513 b'web',
2507 2514 b'style',
2508 2515 default=b'paper',
2509 2516 )
2510 2517 coreconfigitem(
2511 2518 b'web',
2512 2519 b'templates',
2513 2520 default=None,
2514 2521 )
2515 2522 coreconfigitem(
2516 2523 b'web',
2517 2524 b'view',
2518 2525 default=b'served',
2519 2526 experimental=True,
2520 2527 )
2521 2528 coreconfigitem(
2522 2529 b'worker',
2523 2530 b'backgroundclose',
2524 2531 default=dynamicdefault,
2525 2532 )
2526 2533 # Windows defaults to a limit of 512 open files. A buffer of 128
2527 2534 # should give us enough headway.
2528 2535 coreconfigitem(
2529 2536 b'worker',
2530 2537 b'backgroundclosemaxqueue',
2531 2538 default=384,
2532 2539 )
2533 2540 coreconfigitem(
2534 2541 b'worker',
2535 2542 b'backgroundcloseminfilecount',
2536 2543 default=2048,
2537 2544 )
2538 2545 coreconfigitem(
2539 2546 b'worker',
2540 2547 b'backgroundclosethreadcount',
2541 2548 default=4,
2542 2549 )
2543 2550 coreconfigitem(
2544 2551 b'worker',
2545 2552 b'enabled',
2546 2553 default=True,
2547 2554 )
2548 2555 coreconfigitem(
2549 2556 b'worker',
2550 2557 b'numcpus',
2551 2558 default=None,
2552 2559 )
2553 2560
2554 2561 # Rebase related configuration moved to core because other extension are doing
2555 2562 # strange things. For example, shelve import the extensions to reuse some bit
2556 2563 # without formally loading it.
2557 2564 coreconfigitem(
2558 2565 b'commands',
2559 2566 b'rebase.requiredest',
2560 2567 default=False,
2561 2568 )
2562 2569 coreconfigitem(
2563 2570 b'experimental',
2564 2571 b'rebaseskipobsolete',
2565 2572 default=True,
2566 2573 )
2567 2574 coreconfigitem(
2568 2575 b'rebase',
2569 2576 b'singletransaction',
2570 2577 default=False,
2571 2578 )
2572 2579 coreconfigitem(
2573 2580 b'rebase',
2574 2581 b'experimental.inmemory',
2575 2582 default=False,
2576 2583 )
@@ -1,507 +1,517
1 1 # setdiscovery.py - improved discovery of common nodeset for mercurial
2 2 #
3 3 # Copyright 2010 Benoit Boissinot <bboissin@gmail.com>
4 4 # and Peter Arrenbrecht <peter@arrenbrecht.ch>
5 5 #
6 6 # This software may be used and distributed according to the terms of the
7 7 # GNU General Public License version 2 or any later version.
8 8 """
9 9 Algorithm works in the following way. You have two repository: local and
10 10 remote. They both contains a DAG of changelists.
11 11
12 12 The goal of the discovery protocol is to find one set of node *common*,
13 13 the set of nodes shared by local and remote.
14 14
15 15 One of the issue with the original protocol was latency, it could
16 16 potentially require lots of roundtrips to discover that the local repo was a
17 17 subset of remote (which is a very common case, you usually have few changes
18 18 compared to upstream, while upstream probably had lots of development).
19 19
20 20 The new protocol only requires one interface for the remote repo: `known()`,
21 21 which given a set of changelists tells you if they are present in the DAG.
22 22
23 23 The algorithm then works as follow:
24 24
25 25 - We will be using three sets, `common`, `missing`, `unknown`. Originally
26 26 all nodes are in `unknown`.
27 27 - Take a sample from `unknown`, call `remote.known(sample)`
28 28 - For each node that remote knows, move it and all its ancestors to `common`
29 29 - For each node that remote doesn't know, move it and all its descendants
30 30 to `missing`
31 31 - Iterate until `unknown` is empty
32 32
33 33 There are a couple optimizations, first is instead of starting with a random
34 34 sample of missing, start by sending all heads, in the case where the local
35 35 repo is a subset, you computed the answer in one round trip.
36 36
37 37 Then you can do something similar to the bisecting strategy used when
38 38 finding faulty changesets. Instead of random samples, you can try picking
39 39 nodes that will maximize the number of nodes that will be
40 40 classified with it (since all ancestors or descendants will be marked as well).
41 41 """
42 42
43 43 from __future__ import absolute_import
44 44
45 45 import collections
46 46 import random
47 47
48 48 from .i18n import _
49 49 from .node import (
50 50 nullid,
51 51 nullrev,
52 52 )
53 53 from . import (
54 54 error,
55 55 policy,
56 56 util,
57 57 )
58 58
59 59
60 60 def _updatesample(revs, heads, sample, parentfn, quicksamplesize=0):
61 61 """update an existing sample to match the expected size
62 62
63 63 The sample is updated with revs exponentially distant from each head of the
64 64 <revs> set. (H~1, H~2, H~4, H~8, etc).
65 65
66 66 If a target size is specified, the sampling will stop once this size is
67 67 reached. Otherwise sampling will happen until roots of the <revs> set are
68 68 reached.
69 69
70 70 :revs: set of revs we want to discover (if None, assume the whole dag)
71 71 :heads: set of DAG head revs
72 72 :sample: a sample to update
73 73 :parentfn: a callable to resolve parents for a revision
74 74 :quicksamplesize: optional target size of the sample"""
75 75 dist = {}
76 76 visit = collections.deque(heads)
77 77 seen = set()
78 78 factor = 1
79 79 while visit:
80 80 curr = visit.popleft()
81 81 if curr in seen:
82 82 continue
83 83 d = dist.setdefault(curr, 1)
84 84 if d > factor:
85 85 factor *= 2
86 86 if d == factor:
87 87 sample.add(curr)
88 88 if quicksamplesize and (len(sample) >= quicksamplesize):
89 89 return
90 90 seen.add(curr)
91 91
92 92 for p in parentfn(curr):
93 93 if p != nullrev and (not revs or p in revs):
94 94 dist.setdefault(p, d + 1)
95 95 visit.append(p)
96 96
97 97
98 98 def _limitsample(sample, desiredlen, randomize=True):
99 99 """return a random subset of sample of at most desiredlen item.
100 100
101 101 If randomize is False, though, a deterministic subset is returned.
102 102 This is meant for integration tests.
103 103 """
104 104 if len(sample) <= desiredlen:
105 105 return sample
106 106 if randomize:
107 107 return set(random.sample(sample, desiredlen))
108 108 sample = list(sample)
109 109 sample.sort()
110 110 return set(sample[:desiredlen])
111 111
112 112
113 113 class partialdiscovery(object):
114 114 """an object representing ongoing discovery
115 115
116 116 Feed with data from the remote repository, this object keep track of the
117 117 current set of changeset in various states:
118 118
119 119 - common: revs also known remotely
120 120 - undecided: revs we don't have information on yet
121 121 - missing: revs missing remotely
122 122 (all tracked revisions are known locally)
123 123 """
124 124
125 125 def __init__(self, repo, targetheads, respectsize, randomize=True):
126 126 self._repo = repo
127 127 self._targetheads = targetheads
128 128 self._common = repo.changelog.incrementalmissingrevs()
129 129 self._undecided = None
130 130 self.missing = set()
131 131 self._childrenmap = None
132 132 self._respectsize = respectsize
133 133 self.randomize = randomize
134 134
135 135 def addcommons(self, commons):
136 136 """register nodes known as common"""
137 137 self._common.addbases(commons)
138 138 if self._undecided is not None:
139 139 self._common.removeancestorsfrom(self._undecided)
140 140
141 141 def addmissings(self, missings):
142 142 """register some nodes as missing"""
143 143 newmissing = self._repo.revs(b'%ld::%ld', missings, self.undecided)
144 144 if newmissing:
145 145 self.missing.update(newmissing)
146 146 self.undecided.difference_update(newmissing)
147 147
148 148 def addinfo(self, sample):
149 149 """consume an iterable of (rev, known) tuples"""
150 150 common = set()
151 151 missing = set()
152 152 for rev, known in sample:
153 153 if known:
154 154 common.add(rev)
155 155 else:
156 156 missing.add(rev)
157 157 if common:
158 158 self.addcommons(common)
159 159 if missing:
160 160 self.addmissings(missing)
161 161
162 162 def hasinfo(self):
163 163 """return True is we have any clue about the remote state"""
164 164 return self._common.hasbases()
165 165
166 166 def iscomplete(self):
167 167 """True if all the necessary data have been gathered"""
168 168 return self._undecided is not None and not self._undecided
169 169
170 170 @property
171 171 def undecided(self):
172 172 if self._undecided is not None:
173 173 return self._undecided
174 174 self._undecided = set(self._common.missingancestors(self._targetheads))
175 175 return self._undecided
176 176
177 177 def stats(self):
178 178 return {
179 179 'undecided': len(self.undecided),
180 180 }
181 181
182 182 def commonheads(self):
183 183 """the heads of the known common set"""
184 184 # heads(common) == heads(common.bases) since common represents
185 185 # common.bases and all its ancestors
186 186 return self._common.basesheads()
187 187
188 188 def _parentsgetter(self):
189 189 getrev = self._repo.changelog.index.__getitem__
190 190
191 191 def getparents(r):
192 192 return getrev(r)[5:7]
193 193
194 194 return getparents
195 195
196 196 def _childrengetter(self):
197 197
198 198 if self._childrenmap is not None:
199 199 # During discovery, the `undecided` set keep shrinking.
200 200 # Therefore, the map computed for an iteration N will be
201 201 # valid for iteration N+1. Instead of computing the same
202 202 # data over and over we cached it the first time.
203 203 return self._childrenmap.__getitem__
204 204
205 205 # _updatesample() essentially does interaction over revisions to look
206 206 # up their children. This lookup is expensive and doing it in a loop is
207 207 # quadratic. We precompute the children for all relevant revisions and
208 208 # make the lookup in _updatesample() a simple dict lookup.
209 209 self._childrenmap = children = {}
210 210
211 211 parentrevs = self._parentsgetter()
212 212 revs = self.undecided
213 213
214 214 for rev in sorted(revs):
215 215 # Always ensure revision has an entry so we don't need to worry
216 216 # about missing keys.
217 217 children[rev] = []
218 218 for prev in parentrevs(rev):
219 219 if prev == nullrev:
220 220 continue
221 221 c = children.get(prev)
222 222 if c is not None:
223 223 c.append(rev)
224 224 return children.__getitem__
225 225
226 226 def takequicksample(self, headrevs, size):
227 227 """takes a quick sample of size <size>
228 228
229 229 It is meant for initial sampling and focuses on querying heads and close
230 230 ancestors of heads.
231 231
232 232 :headrevs: set of head revisions in local DAG to consider
233 233 :size: the maximum size of the sample"""
234 234 revs = self.undecided
235 235 if len(revs) <= size:
236 236 return list(revs)
237 237 sample = set(self._repo.revs(b'heads(%ld)', revs))
238 238
239 239 if len(sample) >= size:
240 240 return _limitsample(sample, size, randomize=self.randomize)
241 241
242 242 _updatesample(
243 243 None, headrevs, sample, self._parentsgetter(), quicksamplesize=size
244 244 )
245 245 return sample
246 246
247 247 def takefullsample(self, headrevs, size):
248 248 revs = self.undecided
249 249 if len(revs) <= size:
250 250 return list(revs)
251 251 repo = self._repo
252 252 sample = set(repo.revs(b'heads(%ld)', revs))
253 253 parentrevs = self._parentsgetter()
254 254
255 255 # update from heads
256 256 revsheads = sample.copy()
257 257 _updatesample(revs, revsheads, sample, parentrevs)
258 258
259 259 # update from roots
260 260 revsroots = set(repo.revs(b'roots(%ld)', revs))
261 261 childrenrevs = self._childrengetter()
262 262 _updatesample(revs, revsroots, sample, childrenrevs)
263 263 assert sample
264 264
265 265 if not self._respectsize:
266 266 size = max(size, min(len(revsroots), len(revsheads)))
267 267
268 268 sample = _limitsample(sample, size, randomize=self.randomize)
269 269 if len(sample) < size:
270 270 more = size - len(sample)
271 271 takefrom = list(revs - sample)
272 272 if self.randomize:
273 273 sample.update(random.sample(takefrom, more))
274 274 else:
275 275 takefrom.sort()
276 276 sample.update(takefrom[:more])
277 277 return sample
278 278
279 279
280 280 partialdiscovery = policy.importrust(
281 281 'discovery', member='PartialDiscovery', default=partialdiscovery
282 282 )
283 283
284 284
285 285 def findcommonheads(
286 286 ui,
287 287 local,
288 288 remote,
289 289 initialsamplesize=100,
290 290 fullsamplesize=200,
291 291 abortwhenunrelated=True,
292 292 ancestorsof=None,
293 293 audit=None,
294 294 ):
295 295 """Return a tuple (common, anyincoming, remoteheads) used to identify
296 296 missing nodes from or in remote.
297 297
298 298 The audit argument is an optional dictionnary that a caller can pass. it
299 299 will be updated with extra data about the discovery, this is useful for
300 300 debug.
301 301 """
302 302
303 303 samplegrowth = float(ui.config(b'devel', b'discovery.grow-sample.rate'))
304 304
305 305 start = util.timer()
306 306
307 307 roundtrips = 0
308 308 cl = local.changelog
309 309 clnode = cl.node
310 310 clrev = cl.rev
311 311
312 312 if ancestorsof is not None:
313 313 ownheads = [clrev(n) for n in ancestorsof]
314 314 else:
315 315 ownheads = [rev for rev in cl.headrevs() if rev != nullrev]
316 316
317 initial_head_exchange = ui.configbool(b'devel', b'discovery.exchange-heads')
318
317 319 # We also ask remote about all the local heads. That set can be arbitrarily
318 320 # large, so we used to limit it size to `initialsamplesize`. We no longer
319 321 # do as it proved counter productive. The skipped heads could lead to a
320 322 # large "undecided" set, slower to be clarified than if we asked the
321 323 # question for all heads right away.
322 324 #
323 325 # We are already fetching all server heads using the `heads` commands,
324 326 # sending a equivalent number of heads the other way should not have a
325 327 # significant impact. In addition, it is very likely that we are going to
326 328 # have to issue "known" request for an equivalent amount of revisions in
327 329 # order to decide if theses heads are common or missing.
328 330 #
329 331 # find a detailled analysis below.
330 332 #
331 333 # Case A: local and server both has few heads
332 334 #
333 335 # Ownheads is below initialsamplesize, limit would not have any effect.
334 336 #
335 337 # Case B: local has few heads and server has many
336 338 #
337 339 # Ownheads is below initialsamplesize, limit would not have any effect.
338 340 #
339 341 # Case C: local and server both has many heads
340 342 #
341 343 # We now transfert some more data, but not significantly more than is
342 344 # already transfered to carry the server heads.
343 345 #
344 346 # Case D: local has many heads, server has few
345 347 #
346 348 # D.1 local heads are mostly known remotely
347 349 #
348 350 # All the known head will have be part of a `known` request at some
349 351 # point for the discovery to finish. Sending them all earlier is
350 352 # actually helping.
351 353 #
352 354 # (This case is fairly unlikely, it requires the numerous heads to all
353 355 # be merged server side in only a few heads)
354 356 #
355 357 # D.2 local heads are mostly missing remotely
356 358 #
357 359 # To determine that the heads are missing, we'll have to issue `known`
358 360 # request for them or one of their ancestors. This amount of `known`
359 361 # request will likely be in the same order of magnitude than the amount
360 362 # of local heads.
361 363 #
362 364 # The only case where we can be more efficient using `known` request on
363 365 # ancestors are case were all the "missing" local heads are based on a
364 366 # few changeset, also "missing". This means we would have a "complex"
365 367 # graph (with many heads) attached to, but very independant to a the
366 368 # "simple" graph on the server. This is a fairly usual case and have
367 369 # not been met in the wild so far.
370 if initial_head_exchange:
368 371 if remote.limitedarguments:
369 372 sample = _limitsample(ownheads, initialsamplesize)
370 373 # indices between sample and externalized version must match
371 374 sample = list(sample)
372 375 else:
373 376 sample = ownheads
374 377
375 378 ui.debug(b"query 1; heads\n")
376 379 roundtrips += 1
377 380 with remote.commandexecutor() as e:
378 381 fheads = e.callcommand(b'heads', {})
379 382 fknown = e.callcommand(
380 383 b'known',
381 384 {
382 385 b'nodes': [clnode(r) for r in sample],
383 386 },
384 387 )
385 388
386 389 srvheadhashes, yesno = fheads.result(), fknown.result()
387 390
388 391 if audit is not None:
389 392 audit[b'total-roundtrips'] = 1
390 393
391 394 if cl.tip() == nullid:
392 395 if srvheadhashes != [nullid]:
393 396 return [nullid], True, srvheadhashes
394 397 return [nullid], False, []
398 else:
399 # we still need the remote head for the function return
400 with remote.commandexecutor() as e:
401 fheads = e.callcommand(b'heads', {})
402 srvheadhashes = fheads.result()
395 403
396 404 # start actual discovery (we note this before the next "if" for
397 405 # compatibility reasons)
398 406 ui.status(_(b"searching for changes\n"))
399 407
400 408 knownsrvheads = [] # revnos of remote heads that are known locally
401 409 for node in srvheadhashes:
402 410 if node == nullid:
403 411 continue
404 412
405 413 try:
406 414 knownsrvheads.append(clrev(node))
407 415 # Catches unknown and filtered nodes.
408 416 except error.LookupError:
409 417 continue
410 418
419 if initial_head_exchange:
411 420 # early exit if we know all the specified remote heads already
412 421 if len(knownsrvheads) == len(srvheadhashes):
413 422 ui.debug(b"all remote heads known locally\n")
414 423 return srvheadhashes, False, srvheadhashes
415 424
416 425 if len(sample) == len(ownheads) and all(yesno):
417 426 ui.note(_(b"all local changesets known remotely\n"))
418 427 ownheadhashes = [clnode(r) for r in ownheads]
419 428 return ownheadhashes, True, srvheadhashes
420 429
421 430 # full blown discovery
422 431
423 432 # if the server has a limit to its arguments size, we can't grow the sample.
424 433 hard_limit_sample = remote.limitedarguments
425 434 grow_sample = local.ui.configbool(b'devel', b'discovery.grow-sample')
426 435 hard_limit_sample = hard_limit_sample and grow_sample
427 436
428 437 randomize = ui.configbool(b'devel', b'discovery.randomize')
429 438 disco = partialdiscovery(
430 439 local, ownheads, hard_limit_sample, randomize=randomize
431 440 )
441 if initial_head_exchange:
432 442 # treat remote heads (and maybe own heads) as a first implicit sample
433 443 # response
434 444 disco.addcommons(knownsrvheads)
435 445 disco.addinfo(zip(sample, yesno))
436 446
437 full = False
447 full = not initial_head_exchange
438 448 progress = ui.makeprogress(_(b'searching'), unit=_(b'queries'))
439 449 while not disco.iscomplete():
440 450
441 451 if full or disco.hasinfo():
442 452 if full:
443 453 ui.note(_(b"sampling from both directions\n"))
444 454 else:
445 455 ui.debug(b"taking initial sample\n")
446 456 samplefunc = disco.takefullsample
447 457 targetsize = fullsamplesize
448 458 if not hard_limit_sample:
449 459 fullsamplesize = int(fullsamplesize * samplegrowth)
450 460 else:
451 461 # use even cheaper initial sample
452 462 ui.debug(b"taking quick initial sample\n")
453 463 samplefunc = disco.takequicksample
454 464 targetsize = initialsamplesize
455 465 sample = samplefunc(ownheads, targetsize)
456 466
457 467 roundtrips += 1
458 468 progress.update(roundtrips)
459 469 stats = disco.stats()
460 470 ui.debug(
461 471 b"query %i; still undecided: %i, sample size is: %i\n"
462 472 % (roundtrips, stats['undecided'], len(sample))
463 473 )
464 474
465 475 # indices between sample and externalized version must match
466 476 sample = list(sample)
467 477
468 478 with remote.commandexecutor() as e:
469 479 yesno = e.callcommand(
470 480 b'known',
471 481 {
472 482 b'nodes': [clnode(r) for r in sample],
473 483 },
474 484 ).result()
475 485
476 486 full = True
477 487
478 488 disco.addinfo(zip(sample, yesno))
479 489
480 490 result = disco.commonheads()
481 491 elapsed = util.timer() - start
482 492 progress.complete()
483 493 ui.debug(b"%d total queries in %.4fs\n" % (roundtrips, elapsed))
484 494 msg = (
485 495 b'found %d common and %d unknown server heads,'
486 496 b' %d roundtrips in %.4fs\n'
487 497 )
488 498 missing = set(result) - set(knownsrvheads)
489 499 ui.log(b'discovery', msg, len(result), len(missing), roundtrips, elapsed)
490 500
491 501 if audit is not None:
492 502 audit[b'total-roundtrips'] = roundtrips
493 503
494 504 if not result and srvheadhashes != [nullid]:
495 505 if abortwhenunrelated:
496 506 raise error.Abort(_(b"repository is unrelated"))
497 507 else:
498 508 ui.warn(_(b"warning: repository is unrelated\n"))
499 509 return (
500 510 {nullid},
501 511 True,
502 512 srvheadhashes,
503 513 )
504 514
505 515 anyincoming = srvheadhashes != [nullid]
506 516 result = {clnode(r) for r in result}
507 517 return result, anyincoming, srvheadhashes
@@ -1,1583 +1,1582
1 1
2 2 Function to test discovery between two repos in both directions, using both the local shortcut
3 3 (which is currently not activated by default) and the full remotable protocol:
4 4
5 5 $ testdesc() { # revs_a, revs_b, dagdesc
6 6 > if [ -d foo ]; then rm -rf foo; fi
7 7 > hg init foo
8 8 > cd foo
9 9 > hg debugbuilddag "$3"
10 10 > hg clone . a $1 --quiet
11 11 > hg clone . b $2 --quiet
12 12 > echo
13 13 > echo "% -- a -> b tree"
14 14 > hg -R a debugdiscovery b --verbose --old
15 15 > echo
16 16 > echo "% -- a -> b set"
17 17 > hg -R a debugdiscovery b --verbose --debug --config progress.debug=true
18 18 > echo
19 19 > echo "% -- a -> b set (tip only)"
20 20 > hg -R a debugdiscovery b --verbose --debug --config progress.debug=true --rev tip
21 21 > echo
22 22 > echo "% -- b -> a tree"
23 23 > hg -R b debugdiscovery a --verbose --old
24 24 > echo
25 25 > echo "% -- b -> a set"
26 26 > hg -R b debugdiscovery a --verbose --debug --config progress.debug=true
27 27 > echo
28 28 > echo "% -- b -> a set (tip only)"
29 29 > hg -R b debugdiscovery a --verbose --debug --config progress.debug=true --rev tip
30 30 > cd ..
31 31 > }
32 32
33 33
34 34 Small superset:
35 35
36 36 $ testdesc '-ra1 -ra2' '-rb1 -rb2 -rb3' '
37 37 > +2:f +1:a1:b1
38 38 > <f +4 :a2
39 39 > +5 :b2
40 40 > <f +3 :b3'
41 41
42 42 % -- a -> b tree
43 43 comparing with b
44 44 searching for changes
45 45 unpruned common: 01241442b3c2 66f7d451a68b b5714e113bc0
46 46 elapsed time: * seconds (glob)
47 47 round-trips: 2
48 48 heads summary:
49 49 total common heads: 2
50 50 also local heads: 2
51 51 also remote heads: 1
52 52 both: 1
53 53 local heads: 2
54 54 common: 2
55 55 missing: 0
56 56 remote heads: 3
57 57 common: 1
58 58 unknown: 2
59 59 local changesets: 7
60 60 common: 7
61 61 heads: 2
62 62 roots: 1
63 63 missing: 0
64 64 heads: 0
65 65 roots: 0
66 66 first undecided set: 3
67 67 heads: 1
68 68 roots: 1
69 69 common: 3
70 70 missing: 0
71 71 common heads: 01241442b3c2 b5714e113bc0
72 72
73 73 % -- a -> b set
74 74 comparing with b
75 75 query 1; heads
76 76 searching for changes
77 77 all local changesets known remotely
78 78 elapsed time: * seconds (glob)
79 79 round-trips: 1
80 80 heads summary:
81 81 total common heads: 2
82 82 also local heads: 2
83 83 also remote heads: 1
84 84 both: 1
85 85 local heads: 2
86 86 common: 2
87 87 missing: 0
88 88 remote heads: 3
89 89 common: 1
90 90 unknown: 2
91 91 local changesets: 7
92 92 common: 7
93 93 heads: 2
94 94 roots: 1
95 95 missing: 0
96 96 heads: 0
97 97 roots: 0
98 98 first undecided set: 3
99 99 heads: 1
100 100 roots: 1
101 101 common: 3
102 102 missing: 0
103 103 common heads: 01241442b3c2 b5714e113bc0
104 104
105 105 % -- a -> b set (tip only)
106 106 comparing with b
107 107 query 1; heads
108 108 searching for changes
109 109 all local changesets known remotely
110 110 elapsed time: * seconds (glob)
111 111 round-trips: 1
112 112 heads summary:
113 113 total common heads: 1
114 114 also local heads: 1
115 115 also remote heads: 0
116 116 both: 0
117 117 local heads: 2
118 118 common: 1
119 119 missing: 1
120 120 remote heads: 3
121 121 common: 0
122 122 unknown: 3
123 123 local changesets: 7
124 124 common: 6
125 125 heads: 1
126 126 roots: 1
127 127 missing: 1
128 128 heads: 1
129 129 roots: 1
130 130 first undecided set: 6
131 131 heads: 2
132 132 roots: 1
133 133 common: 5
134 134 missing: 1
135 135 common heads: b5714e113bc0
136 136
137 137 % -- b -> a tree
138 138 comparing with a
139 139 searching for changes
140 140 unpruned common: 01241442b3c2 b5714e113bc0
141 141 elapsed time: * seconds (glob)
142 142 round-trips: 1
143 143 heads summary:
144 144 total common heads: 2
145 145 also local heads: 1
146 146 also remote heads: 2
147 147 both: 1
148 148 local heads: 3
149 149 common: 1
150 150 missing: 2
151 151 remote heads: 2
152 152 common: 2
153 153 unknown: 0
154 154 local changesets: 15
155 155 common: 7
156 156 heads: 2
157 157 roots: 1
158 158 missing: 8
159 159 heads: 2
160 160 roots: 2
161 161 first undecided set: 8
162 162 heads: 2
163 163 roots: 2
164 164 common: 0
165 165 missing: 8
166 166 common heads: 01241442b3c2 b5714e113bc0
167 167
168 168 % -- b -> a set
169 169 comparing with a
170 170 query 1; heads
171 171 searching for changes
172 172 all remote heads known locally
173 173 elapsed time: * seconds (glob)
174 174 round-trips: 1
175 175 heads summary:
176 176 total common heads: 2
177 177 also local heads: 1
178 178 also remote heads: 2
179 179 both: 1
180 180 local heads: 3
181 181 common: 1
182 182 missing: 2
183 183 remote heads: 2
184 184 common: 2
185 185 unknown: 0
186 186 local changesets: 15
187 187 common: 7
188 188 heads: 2
189 189 roots: 1
190 190 missing: 8
191 191 heads: 2
192 192 roots: 2
193 193 first undecided set: 8
194 194 heads: 2
195 195 roots: 2
196 196 common: 0
197 197 missing: 8
198 198 common heads: 01241442b3c2 b5714e113bc0
199 199
200 200 % -- b -> a set (tip only)
201 201 comparing with a
202 202 query 1; heads
203 203 searching for changes
204 204 all remote heads known locally
205 205 elapsed time: * seconds (glob)
206 206 round-trips: 1
207 207 heads summary:
208 208 total common heads: 2
209 209 also local heads: 1
210 210 also remote heads: 2
211 211 both: 1
212 212 local heads: 3
213 213 common: 1
214 214 missing: 2
215 215 remote heads: 2
216 216 common: 2
217 217 unknown: 0
218 218 local changesets: 15
219 219 common: 7
220 220 heads: 2
221 221 roots: 1
222 222 missing: 8
223 223 heads: 2
224 224 roots: 2
225 225 first undecided set: 8
226 226 heads: 2
227 227 roots: 2
228 228 common: 0
229 229 missing: 8
230 230 common heads: 01241442b3c2 b5714e113bc0
231 231
232 232
233 233 Many new:
234 234
235 235 $ testdesc '-ra1 -ra2' '-rb' '
236 236 > +2:f +3:a1 +3:b
237 237 > <f +30 :a2'
238 238
239 239 % -- a -> b tree
240 240 comparing with b
241 241 searching for changes
242 242 unpruned common: bebd167eb94d
243 243 elapsed time: * seconds (glob)
244 244 round-trips: 2
245 245 heads summary:
246 246 total common heads: 1
247 247 also local heads: 1
248 248 also remote heads: 0
249 249 both: 0
250 250 local heads: 2
251 251 common: 1
252 252 missing: 1
253 253 remote heads: 1
254 254 common: 0
255 255 unknown: 1
256 256 local changesets: 35
257 257 common: 5
258 258 heads: 1
259 259 roots: 1
260 260 missing: 30
261 261 heads: 1
262 262 roots: 1
263 263 first undecided set: 34
264 264 heads: 2
265 265 roots: 1
266 266 common: 4
267 267 missing: 30
268 268 common heads: bebd167eb94d
269 269
270 270 % -- a -> b set
271 271 comparing with b
272 272 query 1; heads
273 273 searching for changes
274 274 taking initial sample
275 275 searching: 2 queries
276 276 query 2; still undecided: 29, sample size is: 29
277 277 2 total queries in *.????s (glob)
278 278 elapsed time: * seconds (glob)
279 279 round-trips: 2
280 280 heads summary:
281 281 total common heads: 1
282 282 also local heads: 1
283 283 also remote heads: 0
284 284 both: 0
285 285 local heads: 2
286 286 common: 1
287 287 missing: 1
288 288 remote heads: 1
289 289 common: 0
290 290 unknown: 1
291 291 local changesets: 35
292 292 common: 5
293 293 heads: 1
294 294 roots: 1
295 295 missing: 30
296 296 heads: 1
297 297 roots: 1
298 298 first undecided set: 34
299 299 heads: 2
300 300 roots: 1
301 301 common: 4
302 302 missing: 30
303 303 common heads: bebd167eb94d
304 304
305 305 % -- a -> b set (tip only)
306 306 comparing with b
307 307 query 1; heads
308 308 searching for changes
309 309 taking quick initial sample
310 310 searching: 2 queries
311 311 query 2; still undecided: 31, sample size is: 31
312 312 2 total queries in *.????s (glob)
313 313 elapsed time: * seconds (glob)
314 314 round-trips: 2
315 315 heads summary:
316 316 total common heads: 1
317 317 also local heads: 0
318 318 also remote heads: 0
319 319 both: 0
320 320 local heads: 2
321 321 common: 0
322 322 missing: 2
323 323 remote heads: 1
324 324 common: 0
325 325 unknown: 1
326 326 local changesets: 35
327 327 common: 2
328 328 heads: 1
329 329 roots: 1
330 330 missing: 33
331 331 heads: 2
332 332 roots: 2
333 333 first undecided set: 35
334 334 heads: 2
335 335 roots: 1
336 336 common: 2
337 337 missing: 33
338 338 common heads: 66f7d451a68b
339 339
340 340 % -- b -> a tree
341 341 comparing with a
342 342 searching for changes
343 343 unpruned common: 66f7d451a68b bebd167eb94d
344 344 elapsed time: * seconds (glob)
345 345 round-trips: 4
346 346 heads summary:
347 347 total common heads: 1
348 348 also local heads: 0
349 349 also remote heads: 1
350 350 both: 0
351 351 local heads: 1
352 352 common: 0
353 353 missing: 1
354 354 remote heads: 2
355 355 common: 1
356 356 unknown: 1
357 357 local changesets: 8
358 358 common: 5
359 359 heads: 1
360 360 roots: 1
361 361 missing: 3
362 362 heads: 1
363 363 roots: 1
364 364 first undecided set: 3
365 365 heads: 1
366 366 roots: 1
367 367 common: 0
368 368 missing: 3
369 369 common heads: bebd167eb94d
370 370
371 371 % -- b -> a set
372 372 comparing with a
373 373 query 1; heads
374 374 searching for changes
375 375 taking initial sample
376 376 searching: 2 queries
377 377 query 2; still undecided: 2, sample size is: 2
378 378 2 total queries in *.????s (glob)
379 379 elapsed time: * seconds (glob)
380 380 round-trips: 2
381 381 heads summary:
382 382 total common heads: 1
383 383 also local heads: 0
384 384 also remote heads: 1
385 385 both: 0
386 386 local heads: 1
387 387 common: 0
388 388 missing: 1
389 389 remote heads: 2
390 390 common: 1
391 391 unknown: 1
392 392 local changesets: 8
393 393 common: 5
394 394 heads: 1
395 395 roots: 1
396 396 missing: 3
397 397 heads: 1
398 398 roots: 1
399 399 first undecided set: 3
400 400 heads: 1
401 401 roots: 1
402 402 common: 0
403 403 missing: 3
404 404 common heads: bebd167eb94d
405 405
406 406 % -- b -> a set (tip only)
407 407 comparing with a
408 408 query 1; heads
409 409 searching for changes
410 410 taking initial sample
411 411 searching: 2 queries
412 412 query 2; still undecided: 2, sample size is: 2
413 413 2 total queries in *.????s (glob)
414 414 elapsed time: * seconds (glob)
415 415 round-trips: 2
416 416 heads summary:
417 417 total common heads: 1
418 418 also local heads: 0
419 419 also remote heads: 1
420 420 both: 0
421 421 local heads: 1
422 422 common: 0
423 423 missing: 1
424 424 remote heads: 2
425 425 common: 1
426 426 unknown: 1
427 427 local changesets: 8
428 428 common: 5
429 429 heads: 1
430 430 roots: 1
431 431 missing: 3
432 432 heads: 1
433 433 roots: 1
434 434 first undecided set: 3
435 435 heads: 1
436 436 roots: 1
437 437 common: 0
438 438 missing: 3
439 439 common heads: bebd167eb94d
440 440
441 441 Both sides many new with stub:
442 442
443 443 $ testdesc '-ra1 -ra2' '-rb' '
444 444 > +2:f +2:a1 +30 :b
445 445 > <f +30 :a2'
446 446
447 447 % -- a -> b tree
448 448 comparing with b
449 449 searching for changes
450 450 unpruned common: 2dc09a01254d
451 451 elapsed time: * seconds (glob)
452 452 round-trips: 4
453 453 heads summary:
454 454 total common heads: 1
455 455 also local heads: 1
456 456 also remote heads: 0
457 457 both: 0
458 458 local heads: 2
459 459 common: 1
460 460 missing: 1
461 461 remote heads: 1
462 462 common: 0
463 463 unknown: 1
464 464 local changesets: 34
465 465 common: 4
466 466 heads: 1
467 467 roots: 1
468 468 missing: 30
469 469 heads: 1
470 470 roots: 1
471 471 first undecided set: 33
472 472 heads: 2
473 473 roots: 1
474 474 common: 3
475 475 missing: 30
476 476 common heads: 2dc09a01254d
477 477
478 478 % -- a -> b set
479 479 comparing with b
480 480 query 1; heads
481 481 searching for changes
482 482 taking initial sample
483 483 searching: 2 queries
484 484 query 2; still undecided: 29, sample size is: 29
485 485 2 total queries in *.????s (glob)
486 486 elapsed time: * seconds (glob)
487 487 round-trips: 2
488 488 heads summary:
489 489 total common heads: 1
490 490 also local heads: 1
491 491 also remote heads: 0
492 492 both: 0
493 493 local heads: 2
494 494 common: 1
495 495 missing: 1
496 496 remote heads: 1
497 497 common: 0
498 498 unknown: 1
499 499 local changesets: 34
500 500 common: 4
501 501 heads: 1
502 502 roots: 1
503 503 missing: 30
504 504 heads: 1
505 505 roots: 1
506 506 first undecided set: 33
507 507 heads: 2
508 508 roots: 1
509 509 common: 3
510 510 missing: 30
511 511 common heads: 2dc09a01254d
512 512
513 513 % -- a -> b set (tip only)
514 514 comparing with b
515 515 query 1; heads
516 516 searching for changes
517 517 taking quick initial sample
518 518 searching: 2 queries
519 519 query 2; still undecided: 31, sample size is: 31
520 520 2 total queries in *.????s (glob)
521 521 elapsed time: * seconds (glob)
522 522 round-trips: 2
523 523 heads summary:
524 524 total common heads: 1
525 525 also local heads: 0
526 526 also remote heads: 0
527 527 both: 0
528 528 local heads: 2
529 529 common: 0
530 530 missing: 2
531 531 remote heads: 1
532 532 common: 0
533 533 unknown: 1
534 534 local changesets: 34
535 535 common: 2
536 536 heads: 1
537 537 roots: 1
538 538 missing: 32
539 539 heads: 2
540 540 roots: 2
541 541 first undecided set: 34
542 542 heads: 2
543 543 roots: 1
544 544 common: 2
545 545 missing: 32
546 546 common heads: 66f7d451a68b
547 547
548 548 % -- b -> a tree
549 549 comparing with a
550 550 searching for changes
551 551 unpruned common: 2dc09a01254d 66f7d451a68b
552 552 elapsed time: * seconds (glob)
553 553 round-trips: 4
554 554 heads summary:
555 555 total common heads: 1
556 556 also local heads: 0
557 557 also remote heads: 1
558 558 both: 0
559 559 local heads: 1
560 560 common: 0
561 561 missing: 1
562 562 remote heads: 2
563 563 common: 1
564 564 unknown: 1
565 565 local changesets: 34
566 566 common: 4
567 567 heads: 1
568 568 roots: 1
569 569 missing: 30
570 570 heads: 1
571 571 roots: 1
572 572 first undecided set: 30
573 573 heads: 1
574 574 roots: 1
575 575 common: 0
576 576 missing: 30
577 577 common heads: 2dc09a01254d
578 578
579 579 % -- b -> a set
580 580 comparing with a
581 581 query 1; heads
582 582 searching for changes
583 583 taking initial sample
584 584 searching: 2 queries
585 585 query 2; still undecided: 29, sample size is: 29
586 586 2 total queries in *.????s (glob)
587 587 elapsed time: * seconds (glob)
588 588 round-trips: 2
589 589 heads summary:
590 590 total common heads: 1
591 591 also local heads: 0
592 592 also remote heads: 1
593 593 both: 0
594 594 local heads: 1
595 595 common: 0
596 596 missing: 1
597 597 remote heads: 2
598 598 common: 1
599 599 unknown: 1
600 600 local changesets: 34
601 601 common: 4
602 602 heads: 1
603 603 roots: 1
604 604 missing: 30
605 605 heads: 1
606 606 roots: 1
607 607 first undecided set: 30
608 608 heads: 1
609 609 roots: 1
610 610 common: 0
611 611 missing: 30
612 612 common heads: 2dc09a01254d
613 613
614 614 % -- b -> a set (tip only)
615 615 comparing with a
616 616 query 1; heads
617 617 searching for changes
618 618 taking initial sample
619 619 searching: 2 queries
620 620 query 2; still undecided: 29, sample size is: 29
621 621 2 total queries in *.????s (glob)
622 622 elapsed time: * seconds (glob)
623 623 round-trips: 2
624 624 heads summary:
625 625 total common heads: 1
626 626 also local heads: 0
627 627 also remote heads: 1
628 628 both: 0
629 629 local heads: 1
630 630 common: 0
631 631 missing: 1
632 632 remote heads: 2
633 633 common: 1
634 634 unknown: 1
635 635 local changesets: 34
636 636 common: 4
637 637 heads: 1
638 638 roots: 1
639 639 missing: 30
640 640 heads: 1
641 641 roots: 1
642 642 first undecided set: 30
643 643 heads: 1
644 644 roots: 1
645 645 common: 0
646 646 missing: 30
647 647 common heads: 2dc09a01254d
648 648
649 649
650 650 Both many new:
651 651
652 652 $ testdesc '-ra' '-rb' '
653 653 > +2:f +30 :b
654 654 > <f +30 :a'
655 655
656 656 % -- a -> b tree
657 657 comparing with b
658 658 searching for changes
659 659 unpruned common: 66f7d451a68b
660 660 elapsed time: * seconds (glob)
661 661 round-trips: 4
662 662 heads summary:
663 663 total common heads: 1
664 664 also local heads: 0
665 665 also remote heads: 0
666 666 both: 0
667 667 local heads: 1
668 668 common: 0
669 669 missing: 1
670 670 remote heads: 1
671 671 common: 0
672 672 unknown: 1
673 673 local changesets: 32
674 674 common: 2
675 675 heads: 1
676 676 roots: 1
677 677 missing: 30
678 678 heads: 1
679 679 roots: 1
680 680 first undecided set: 32
681 681 heads: 1
682 682 roots: 1
683 683 common: 2
684 684 missing: 30
685 685 common heads: 66f7d451a68b
686 686
687 687 % -- a -> b set
688 688 comparing with b
689 689 query 1; heads
690 690 searching for changes
691 691 taking quick initial sample
692 692 searching: 2 queries
693 693 query 2; still undecided: 31, sample size is: 31
694 694 2 total queries in *.????s (glob)
695 695 elapsed time: * seconds (glob)
696 696 round-trips: 2
697 697 heads summary:
698 698 total common heads: 1
699 699 also local heads: 0
700 700 also remote heads: 0
701 701 both: 0
702 702 local heads: 1
703 703 common: 0
704 704 missing: 1
705 705 remote heads: 1
706 706 common: 0
707 707 unknown: 1
708 708 local changesets: 32
709 709 common: 2
710 710 heads: 1
711 711 roots: 1
712 712 missing: 30
713 713 heads: 1
714 714 roots: 1
715 715 first undecided set: 32
716 716 heads: 1
717 717 roots: 1
718 718 common: 2
719 719 missing: 30
720 720 common heads: 66f7d451a68b
721 721
722 722 % -- a -> b set (tip only)
723 723 comparing with b
724 724 query 1; heads
725 725 searching for changes
726 726 taking quick initial sample
727 727 searching: 2 queries
728 728 query 2; still undecided: 31, sample size is: 31
729 729 2 total queries in *.????s (glob)
730 730 elapsed time: * seconds (glob)
731 731 round-trips: 2
732 732 heads summary:
733 733 total common heads: 1
734 734 also local heads: 0
735 735 also remote heads: 0
736 736 both: 0
737 737 local heads: 1
738 738 common: 0
739 739 missing: 1
740 740 remote heads: 1
741 741 common: 0
742 742 unknown: 1
743 743 local changesets: 32
744 744 common: 2
745 745 heads: 1
746 746 roots: 1
747 747 missing: 30
748 748 heads: 1
749 749 roots: 1
750 750 first undecided set: 32
751 751 heads: 1
752 752 roots: 1
753 753 common: 2
754 754 missing: 30
755 755 common heads: 66f7d451a68b
756 756
757 757 % -- b -> a tree
758 758 comparing with a
759 759 searching for changes
760 760 unpruned common: 66f7d451a68b
761 761 elapsed time: * seconds (glob)
762 762 round-trips: 4
763 763 heads summary:
764 764 total common heads: 1
765 765 also local heads: 0
766 766 also remote heads: 0
767 767 both: 0
768 768 local heads: 1
769 769 common: 0
770 770 missing: 1
771 771 remote heads: 1
772 772 common: 0
773 773 unknown: 1
774 774 local changesets: 32
775 775 common: 2
776 776 heads: 1
777 777 roots: 1
778 778 missing: 30
779 779 heads: 1
780 780 roots: 1
781 781 first undecided set: 32
782 782 heads: 1
783 783 roots: 1
784 784 common: 2
785 785 missing: 30
786 786 common heads: 66f7d451a68b
787 787
788 788 % -- b -> a set
789 789 comparing with a
790 790 query 1; heads
791 791 searching for changes
792 792 taking quick initial sample
793 793 searching: 2 queries
794 794 query 2; still undecided: 31, sample size is: 31
795 795 2 total queries in *.????s (glob)
796 796 elapsed time: * seconds (glob)
797 797 round-trips: 2
798 798 heads summary:
799 799 total common heads: 1
800 800 also local heads: 0
801 801 also remote heads: 0
802 802 both: 0
803 803 local heads: 1
804 804 common: 0
805 805 missing: 1
806 806 remote heads: 1
807 807 common: 0
808 808 unknown: 1
809 809 local changesets: 32
810 810 common: 2
811 811 heads: 1
812 812 roots: 1
813 813 missing: 30
814 814 heads: 1
815 815 roots: 1
816 816 first undecided set: 32
817 817 heads: 1
818 818 roots: 1
819 819 common: 2
820 820 missing: 30
821 821 common heads: 66f7d451a68b
822 822
823 823 % -- b -> a set (tip only)
824 824 comparing with a
825 825 query 1; heads
826 826 searching for changes
827 827 taking quick initial sample
828 828 searching: 2 queries
829 829 query 2; still undecided: 31, sample size is: 31
830 830 2 total queries in *.????s (glob)
831 831 elapsed time: * seconds (glob)
832 832 round-trips: 2
833 833 heads summary:
834 834 total common heads: 1
835 835 also local heads: 0
836 836 also remote heads: 0
837 837 both: 0
838 838 local heads: 1
839 839 common: 0
840 840 missing: 1
841 841 remote heads: 1
842 842 common: 0
843 843 unknown: 1
844 844 local changesets: 32
845 845 common: 2
846 846 heads: 1
847 847 roots: 1
848 848 missing: 30
849 849 heads: 1
850 850 roots: 1
851 851 first undecided set: 32
852 852 heads: 1
853 853 roots: 1
854 854 common: 2
855 855 missing: 30
856 856 common heads: 66f7d451a68b
857 857
858 858
859 859 Both many new skewed:
860 860
861 861 $ testdesc '-ra' '-rb' '
862 862 > +2:f +30 :b
863 863 > <f +50 :a'
864 864
865 865 % -- a -> b tree
866 866 comparing with b
867 867 searching for changes
868 868 unpruned common: 66f7d451a68b
869 869 elapsed time: * seconds (glob)
870 870 round-trips: 4
871 871 heads summary:
872 872 total common heads: 1
873 873 also local heads: 0
874 874 also remote heads: 0
875 875 both: 0
876 876 local heads: 1
877 877 common: 0
878 878 missing: 1
879 879 remote heads: 1
880 880 common: 0
881 881 unknown: 1
882 882 local changesets: 52
883 883 common: 2
884 884 heads: 1
885 885 roots: 1
886 886 missing: 50
887 887 heads: 1
888 888 roots: 1
889 889 first undecided set: 52
890 890 heads: 1
891 891 roots: 1
892 892 common: 2
893 893 missing: 50
894 894 common heads: 66f7d451a68b
895 895
896 896 % -- a -> b set
897 897 comparing with b
898 898 query 1; heads
899 899 searching for changes
900 900 taking quick initial sample
901 901 searching: 2 queries
902 902 query 2; still undecided: 51, sample size is: 51
903 903 2 total queries in *.????s (glob)
904 904 elapsed time: * seconds (glob)
905 905 round-trips: 2
906 906 heads summary:
907 907 total common heads: 1
908 908 also local heads: 0
909 909 also remote heads: 0
910 910 both: 0
911 911 local heads: 1
912 912 common: 0
913 913 missing: 1
914 914 remote heads: 1
915 915 common: 0
916 916 unknown: 1
917 917 local changesets: 52
918 918 common: 2
919 919 heads: 1
920 920 roots: 1
921 921 missing: 50
922 922 heads: 1
923 923 roots: 1
924 924 first undecided set: 52
925 925 heads: 1
926 926 roots: 1
927 927 common: 2
928 928 missing: 50
929 929 common heads: 66f7d451a68b
930 930
931 931 % -- a -> b set (tip only)
932 932 comparing with b
933 933 query 1; heads
934 934 searching for changes
935 935 taking quick initial sample
936 936 searching: 2 queries
937 937 query 2; still undecided: 51, sample size is: 51
938 938 2 total queries in *.????s (glob)
939 939 elapsed time: * seconds (glob)
940 940 round-trips: 2
941 941 heads summary:
942 942 total common heads: 1
943 943 also local heads: 0
944 944 also remote heads: 0
945 945 both: 0
946 946 local heads: 1
947 947 common: 0
948 948 missing: 1
949 949 remote heads: 1
950 950 common: 0
951 951 unknown: 1
952 952 local changesets: 52
953 953 common: 2
954 954 heads: 1
955 955 roots: 1
956 956 missing: 50
957 957 heads: 1
958 958 roots: 1
959 959 first undecided set: 52
960 960 heads: 1
961 961 roots: 1
962 962 common: 2
963 963 missing: 50
964 964 common heads: 66f7d451a68b
965 965
966 966 % -- b -> a tree
967 967 comparing with a
968 968 searching for changes
969 969 unpruned common: 66f7d451a68b
970 970 elapsed time: * seconds (glob)
971 971 round-trips: 3
972 972 heads summary:
973 973 total common heads: 1
974 974 also local heads: 0
975 975 also remote heads: 0
976 976 both: 0
977 977 local heads: 1
978 978 common: 0
979 979 missing: 1
980 980 remote heads: 1
981 981 common: 0
982 982 unknown: 1
983 983 local changesets: 32
984 984 common: 2
985 985 heads: 1
986 986 roots: 1
987 987 missing: 30
988 988 heads: 1
989 989 roots: 1
990 990 first undecided set: 32
991 991 heads: 1
992 992 roots: 1
993 993 common: 2
994 994 missing: 30
995 995 common heads: 66f7d451a68b
996 996
997 997 % -- b -> a set
998 998 comparing with a
999 999 query 1; heads
1000 1000 searching for changes
1001 1001 taking quick initial sample
1002 1002 searching: 2 queries
1003 1003 query 2; still undecided: 31, sample size is: 31
1004 1004 2 total queries in *.????s (glob)
1005 1005 elapsed time: * seconds (glob)
1006 1006 round-trips: 2
1007 1007 heads summary:
1008 1008 total common heads: 1
1009 1009 also local heads: 0
1010 1010 also remote heads: 0
1011 1011 both: 0
1012 1012 local heads: 1
1013 1013 common: 0
1014 1014 missing: 1
1015 1015 remote heads: 1
1016 1016 common: 0
1017 1017 unknown: 1
1018 1018 local changesets: 32
1019 1019 common: 2
1020 1020 heads: 1
1021 1021 roots: 1
1022 1022 missing: 30
1023 1023 heads: 1
1024 1024 roots: 1
1025 1025 first undecided set: 32
1026 1026 heads: 1
1027 1027 roots: 1
1028 1028 common: 2
1029 1029 missing: 30
1030 1030 common heads: 66f7d451a68b
1031 1031
1032 1032 % -- b -> a set (tip only)
1033 1033 comparing with a
1034 1034 query 1; heads
1035 1035 searching for changes
1036 1036 taking quick initial sample
1037 1037 searching: 2 queries
1038 1038 query 2; still undecided: 31, sample size is: 31
1039 1039 2 total queries in *.????s (glob)
1040 1040 elapsed time: * seconds (glob)
1041 1041 round-trips: 2
1042 1042 heads summary:
1043 1043 total common heads: 1
1044 1044 also local heads: 0
1045 1045 also remote heads: 0
1046 1046 both: 0
1047 1047 local heads: 1
1048 1048 common: 0
1049 1049 missing: 1
1050 1050 remote heads: 1
1051 1051 common: 0
1052 1052 unknown: 1
1053 1053 local changesets: 32
1054 1054 common: 2
1055 1055 heads: 1
1056 1056 roots: 1
1057 1057 missing: 30
1058 1058 heads: 1
1059 1059 roots: 1
1060 1060 first undecided set: 32
1061 1061 heads: 1
1062 1062 roots: 1
1063 1063 common: 2
1064 1064 missing: 30
1065 1065 common heads: 66f7d451a68b
1066 1066
1067 1067
1068 1068 Both many new on top of long history:
1069 1069
1070 1070 $ testdesc '-ra' '-rb' '
1071 1071 > +1000:f +30 :b
1072 1072 > <f +50 :a'
1073 1073
1074 1074 % -- a -> b tree
1075 1075 comparing with b
1076 1076 searching for changes
1077 1077 unpruned common: 7ead0cba2838
1078 1078 elapsed time: * seconds (glob)
1079 1079 round-trips: 4
1080 1080 heads summary:
1081 1081 total common heads: 1
1082 1082 also local heads: 0
1083 1083 also remote heads: 0
1084 1084 both: 0
1085 1085 local heads: 1
1086 1086 common: 0
1087 1087 missing: 1
1088 1088 remote heads: 1
1089 1089 common: 0
1090 1090 unknown: 1
1091 1091 local changesets: 1050
1092 1092 common: 1000
1093 1093 heads: 1
1094 1094 roots: 1
1095 1095 missing: 50
1096 1096 heads: 1
1097 1097 roots: 1
1098 1098 first undecided set: 1050
1099 1099 heads: 1
1100 1100 roots: 1
1101 1101 common: 1000
1102 1102 missing: 50
1103 1103 common heads: 7ead0cba2838
1104 1104
1105 1105 % -- a -> b set
1106 1106 comparing with b
1107 1107 query 1; heads
1108 1108 searching for changes
1109 1109 taking quick initial sample
1110 1110 searching: 2 queries
1111 1111 query 2; still undecided: 1049, sample size is: 11
1112 1112 sampling from both directions
1113 1113 searching: 3 queries
1114 1114 query 3; still undecided: 31, sample size is: 31
1115 1115 3 total queries in *.????s (glob)
1116 1116 elapsed time: * seconds (glob)
1117 1117 round-trips: 3
1118 1118 heads summary:
1119 1119 total common heads: 1
1120 1120 also local heads: 0
1121 1121 also remote heads: 0
1122 1122 both: 0
1123 1123 local heads: 1
1124 1124 common: 0
1125 1125 missing: 1
1126 1126 remote heads: 1
1127 1127 common: 0
1128 1128 unknown: 1
1129 1129 local changesets: 1050
1130 1130 common: 1000
1131 1131 heads: 1
1132 1132 roots: 1
1133 1133 missing: 50
1134 1134 heads: 1
1135 1135 roots: 1
1136 1136 first undecided set: 1050
1137 1137 heads: 1
1138 1138 roots: 1
1139 1139 common: 1000
1140 1140 missing: 50
1141 1141 common heads: 7ead0cba2838
1142 1142
1143 1143 % -- a -> b set (tip only)
1144 1144 comparing with b
1145 1145 query 1; heads
1146 1146 searching for changes
1147 1147 taking quick initial sample
1148 1148 searching: 2 queries
1149 1149 query 2; still undecided: 1049, sample size is: 11
1150 1150 sampling from both directions
1151 1151 searching: 3 queries
1152 1152 query 3; still undecided: 31, sample size is: 31
1153 1153 3 total queries in *.????s (glob)
1154 1154 elapsed time: * seconds (glob)
1155 1155 round-trips: 3
1156 1156 heads summary:
1157 1157 total common heads: 1
1158 1158 also local heads: 0
1159 1159 also remote heads: 0
1160 1160 both: 0
1161 1161 local heads: 1
1162 1162 common: 0
1163 1163 missing: 1
1164 1164 remote heads: 1
1165 1165 common: 0
1166 1166 unknown: 1
1167 1167 local changesets: 1050
1168 1168 common: 1000
1169 1169 heads: 1
1170 1170 roots: 1
1171 1171 missing: 50
1172 1172 heads: 1
1173 1173 roots: 1
1174 1174 first undecided set: 1050
1175 1175 heads: 1
1176 1176 roots: 1
1177 1177 common: 1000
1178 1178 missing: 50
1179 1179 common heads: 7ead0cba2838
1180 1180
1181 1181 % -- b -> a tree
1182 1182 comparing with a
1183 1183 searching for changes
1184 1184 unpruned common: 7ead0cba2838
1185 1185 elapsed time: * seconds (glob)
1186 1186 round-trips: 3
1187 1187 heads summary:
1188 1188 total common heads: 1
1189 1189 also local heads: 0
1190 1190 also remote heads: 0
1191 1191 both: 0
1192 1192 local heads: 1
1193 1193 common: 0
1194 1194 missing: 1
1195 1195 remote heads: 1
1196 1196 common: 0
1197 1197 unknown: 1
1198 1198 local changesets: 1030
1199 1199 common: 1000
1200 1200 heads: 1
1201 1201 roots: 1
1202 1202 missing: 30
1203 1203 heads: 1
1204 1204 roots: 1
1205 1205 first undecided set: 1030
1206 1206 heads: 1
1207 1207 roots: 1
1208 1208 common: 1000
1209 1209 missing: 30
1210 1210 common heads: 7ead0cba2838
1211 1211
1212 1212 % -- b -> a set
1213 1213 comparing with a
1214 1214 query 1; heads
1215 1215 searching for changes
1216 1216 taking quick initial sample
1217 1217 searching: 2 queries
1218 1218 query 2; still undecided: 1029, sample size is: 11
1219 1219 sampling from both directions
1220 1220 searching: 3 queries
1221 1221 query 3; still undecided: 15, sample size is: 15
1222 1222 3 total queries in *.????s (glob)
1223 1223 elapsed time: * seconds (glob)
1224 1224 round-trips: 3
1225 1225 heads summary:
1226 1226 total common heads: 1
1227 1227 also local heads: 0
1228 1228 also remote heads: 0
1229 1229 both: 0
1230 1230 local heads: 1
1231 1231 common: 0
1232 1232 missing: 1
1233 1233 remote heads: 1
1234 1234 common: 0
1235 1235 unknown: 1
1236 1236 local changesets: 1030
1237 1237 common: 1000
1238 1238 heads: 1
1239 1239 roots: 1
1240 1240 missing: 30
1241 1241 heads: 1
1242 1242 roots: 1
1243 1243 first undecided set: 1030
1244 1244 heads: 1
1245 1245 roots: 1
1246 1246 common: 1000
1247 1247 missing: 30
1248 1248 common heads: 7ead0cba2838
1249 1249
1250 1250 % -- b -> a set (tip only)
1251 1251 comparing with a
1252 1252 query 1; heads
1253 1253 searching for changes
1254 1254 taking quick initial sample
1255 1255 searching: 2 queries
1256 1256 query 2; still undecided: 1029, sample size is: 11
1257 1257 sampling from both directions
1258 1258 searching: 3 queries
1259 1259 query 3; still undecided: 15, sample size is: 15
1260 1260 3 total queries in *.????s (glob)
1261 1261 elapsed time: * seconds (glob)
1262 1262 round-trips: 3
1263 1263 heads summary:
1264 1264 total common heads: 1
1265 1265 also local heads: 0
1266 1266 also remote heads: 0
1267 1267 both: 0
1268 1268 local heads: 1
1269 1269 common: 0
1270 1270 missing: 1
1271 1271 remote heads: 1
1272 1272 common: 0
1273 1273 unknown: 1
1274 1274 local changesets: 1030
1275 1275 common: 1000
1276 1276 heads: 1
1277 1277 roots: 1
1278 1278 missing: 30
1279 1279 heads: 1
1280 1280 roots: 1
1281 1281 first undecided set: 1030
1282 1282 heads: 1
1283 1283 roots: 1
1284 1284 common: 1000
1285 1285 missing: 30
1286 1286 common heads: 7ead0cba2838
1287 1287
1288 1288
1289 1289 One with >200 heads. We now switch to send them all in the initial roundtrip, but still do sampling for the later request.
1290 1290
1291 1291 $ hg init manyheads
1292 1292 $ cd manyheads
1293 1293 $ echo "+300:r @a" >dagdesc
1294 1294 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1295 1295 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1296 1296 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1297 1297 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1298 1298 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1299 1299 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1300 1300 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1301 1301 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1302 1302 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1303 1303 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1304 1304 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1305 1305 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1306 1306 $ echo "*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3 *r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3*r+3" >>dagdesc # 20 heads
1307 1307 $ echo "@b *r+3" >>dagdesc # one more head
1308 1308 $ hg debugbuilddag <dagdesc
1309 1309 reading DAG from stdin
1310 1310
1311 1311 $ hg heads -t --template . | wc -c
1312 1312 \s*261 (re)
1313 1313
1314 1314 $ hg clone -b a . a
1315 1315 adding changesets
1316 1316 adding manifests
1317 1317 adding file changes
1318 1318 added 1340 changesets with 0 changes to 0 files (+259 heads)
1319 1319 new changesets 1ea73414a91b:1c51e2c80832
1320 1320 updating to branch a
1321 1321 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
1322 1322 $ hg clone -b b . b
1323 1323 adding changesets
1324 1324 adding manifests
1325 1325 adding file changes
1326 1326 added 304 changesets with 0 changes to 0 files
1327 1327 new changesets 1ea73414a91b:513314ca8b3a
1328 1328 updating to branch b
1329 1329 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
1330 1330
1331 1331 $ hg -R a debugdiscovery b --debug --verbose --config progress.debug=true --config devel.discovery.randomize=false
1332 1332 comparing with b
1333 1333 query 1; heads
1334 1334 searching for changes
1335 1335 taking quick initial sample
1336 1336 searching: 2 queries
1337 1337 query 2; still undecided: 1080, sample size is: 100
1338 1338 sampling from both directions
1339 1339 searching: 3 queries
1340 1340 query 3; still undecided: 980, sample size is: 200
1341 1341 sampling from both directions
1342 1342 searching: 4 queries
1343 1343 query 4; still undecided: 497, sample size is: 210
1344 1344 sampling from both directions
1345 1345 searching: 5 queries
1346 1346 query 5; still undecided: 285, sample size is: 220
1347 1347 sampling from both directions
1348 1348 searching: 6 queries
1349 1349 query 6; still undecided: 63, sample size is: 63
1350 1350 6 total queries in *.????s (glob)
1351 1351 elapsed time: * seconds (glob)
1352 1352 round-trips: 6
1353 1353 heads summary:
1354 1354 total common heads: 1
1355 1355 also local heads: 0
1356 1356 also remote heads: 0
1357 1357 both: 0
1358 1358 local heads: 260
1359 1359 common: 0
1360 1360 missing: 260
1361 1361 remote heads: 1
1362 1362 common: 0
1363 1363 unknown: 1
1364 1364 local changesets: 1340
1365 1365 common: 300
1366 1366 heads: 1
1367 1367 roots: 1
1368 1368 missing: 1040
1369 1369 heads: 260
1370 1370 roots: 260
1371 1371 first undecided set: 1340
1372 1372 heads: 260
1373 1373 roots: 1
1374 1374 common: 300
1375 1375 missing: 1040
1376 1376 common heads: 3ee37d65064a
1377 1377 $ hg -R a debugdiscovery b --debug --verbose --config progress.debug=true --rev tip
1378 1378 comparing with b
1379 1379 query 1; heads
1380 1380 searching for changes
1381 1381 taking quick initial sample
1382 1382 searching: 2 queries
1383 1383 query 2; still undecided: 303, sample size is: 9
1384 1384 sampling from both directions
1385 1385 searching: 3 queries
1386 1386 query 3; still undecided: 3, sample size is: 3
1387 1387 3 total queries in *.????s (glob)
1388 1388 elapsed time: * seconds (glob)
1389 1389 round-trips: 3
1390 1390 heads summary:
1391 1391 total common heads: 1
1392 1392 also local heads: 0
1393 1393 also remote heads: 0
1394 1394 both: 0
1395 1395 local heads: 260
1396 1396 common: 0
1397 1397 missing: 260
1398 1398 remote heads: 1
1399 1399 common: 0
1400 1400 unknown: 1
1401 1401 local changesets: 1340
1402 1402 common: 300
1403 1403 heads: 1
1404 1404 roots: 1
1405 1405 missing: 1040
1406 1406 heads: 260
1407 1407 roots: 260
1408 1408 first undecided set: 1340
1409 1409 heads: 260
1410 1410 roots: 1
1411 1411 common: 300
1412 1412 missing: 1040
1413 1413 common heads: 3ee37d65064a
1414 1414
1415 $ hg -R a debugdiscovery b --debug --config devel.discovery.randomize=false --config devel.discovery.grow-sample.rate=1.01
1415 $ hg -R a debugdiscovery b --debug --config devel.discovery.exchange-heads=false --config devel.discovery.randomize=false --config devel.discovery.grow-sample.rate=1.01
1416 1416 comparing with b
1417 query 1; heads
1418 1417 searching for changes
1419 taking quick initial sample
1420 query 2; still undecided: 1080, sample size is: 100
1421 1418 sampling from both directions
1422 query 3; still undecided: 980, sample size is: 200
1419 query 1; still undecided: 1340, sample size is: 200
1420 sampling from both directions
1421 query 2; still undecided: 795, sample size is: 202
1423 1422 sampling from both directions
1424 query 4; still undecided: 497, sample size is: 202
1423 query 3; still undecided: 525, sample size is: 204
1425 1424 sampling from both directions
1426 query 5; still undecided: 294, sample size is: 204
1425 query 4; still undecided: 252, sample size is: 206
1427 1426 sampling from both directions
1428 query 6; still undecided: 90, sample size is: 90
1429 6 total queries in *s (glob)
1427 query 5; still undecided: 44, sample size is: 44
1428 5 total queries in *s (glob)
1430 1429 elapsed time: * seconds (glob)
1431 round-trips: 6
1430 round-trips: 5
1432 1431 heads summary:
1433 1432 total common heads: 1
1434 1433 also local heads: 0
1435 1434 also remote heads: 0
1436 1435 both: 0
1437 1436 local heads: 260
1438 1437 common: 0
1439 1438 missing: 260
1440 1439 remote heads: 1
1441 1440 common: 0
1442 1441 unknown: 1
1443 1442 local changesets: 1340
1444 1443 common: 300
1445 1444 heads: 1
1446 1445 roots: 1
1447 1446 missing: 1040
1448 1447 heads: 260
1449 1448 roots: 260
1450 1449 first undecided set: 1340
1451 1450 heads: 260
1452 1451 roots: 1
1453 1452 common: 300
1454 1453 missing: 1040
1455 1454 common heads: 3ee37d65064a
1456 1455
1457 1456 Test actual protocol when pulling one new head in addition to common heads
1458 1457
1459 1458 $ hg clone -U b c
1460 1459 $ hg -R c id -ir tip
1461 1460 513314ca8b3a
1462 1461 $ hg -R c up -qr default
1463 1462 $ touch c/f
1464 1463 $ hg -R c ci -Aqm "extra head"
1465 1464 $ hg -R c id -i
1466 1465 e64a39e7da8b
1467 1466
1468 1467 $ hg serve -R c -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log
1469 1468 $ cat hg.pid >> $DAEMON_PIDS
1470 1469
1471 1470 $ hg -R b incoming http://localhost:$HGPORT/ -T '{node|short}\n'
1472 1471 comparing with http://localhost:$HGPORT/
1473 1472 searching for changes
1474 1473 e64a39e7da8b
1475 1474
1476 1475 $ killdaemons.py
1477 1476 $ cut -d' ' -f6- access.log | grep -v cmd=known # cmd=known uses random sampling
1478 1477 "GET /?cmd=capabilities HTTP/1.1" 200 -
1479 1478 "GET /?cmd=batch HTTP/1.1" 200 - x-hgarg-1:cmds=heads+%3Bknown+nodes%3D513314ca8b3ae4dac8eec56966265b00fcf866db x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull
1480 1479 "GET /?cmd=getbundle HTTP/1.1" 200 - x-hgarg-1:$USUAL_BUNDLE_CAPS$&cg=1&common=513314ca8b3ae4dac8eec56966265b00fcf866db&heads=e64a39e7da8b0d54bc63e81169aff001c13b3477 x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull
1481 1480 "GET /?cmd=listkeys HTTP/1.1" 200 - x-hgarg-1:namespace=phases x-hgproto-1:0.1 0.2 comp=$USUAL_COMPRESSIONS$ partial-pull
1482 1481 $ cat errors.log
1483 1482
1484 1483 $ cd ..
1485 1484
1486 1485
1487 1486 Issue 4438 - test coverage for 3ef893520a85 issues.
1488 1487
1489 1488 $ mkdir issue4438
1490 1489 $ cd issue4438
1491 1490 #if false
1492 1491 generate new bundles:
1493 1492 $ hg init r1
1494 1493 $ for i in `"$PYTHON" $TESTDIR/seq.py 101`; do hg -R r1 up -qr null && hg -R r1 branch -q b$i && hg -R r1 ci -qmb$i; done
1495 1494 $ hg clone -q r1 r2
1496 1495 $ for i in `"$PYTHON" $TESTDIR/seq.py 10`; do hg -R r1 up -qr null && hg -R r1 branch -q c$i && hg -R r1 ci -qmc$i; done
1497 1496 $ hg -R r2 branch -q r2change && hg -R r2 ci -qmr2change
1498 1497 $ hg -R r1 bundle -qa $TESTDIR/bundles/issue4438-r1.hg
1499 1498 $ hg -R r2 bundle -qa $TESTDIR/bundles/issue4438-r2.hg
1500 1499 #else
1501 1500 use existing bundles:
1502 1501 $ hg init r1
1503 1502 $ hg -R r1 -q unbundle $TESTDIR/bundles/issue4438-r1.hg
1504 1503 $ hg -R r1 -q up
1505 1504 $ hg init r2
1506 1505 $ hg -R r2 -q unbundle $TESTDIR/bundles/issue4438-r2.hg
1507 1506 $ hg -R r2 -q up
1508 1507 #endif
1509 1508
1510 1509 Set iteration order could cause wrong and unstable results - fixed in 73cfaa348650:
1511 1510
1512 1511 $ hg -R r1 outgoing r2 -T'{rev} '
1513 1512 comparing with r2
1514 1513 searching for changes
1515 1514 101 102 103 104 105 106 107 108 109 110 (no-eol)
1516 1515
1517 1516 The case where all the 'initialsamplesize' samples already were common would
1518 1517 give 'all remote heads known locally' without checking the remaining heads -
1519 1518 fixed in 86c35b7ae300:
1520 1519
1521 1520 $ cat >> r1/.hg/hgrc << EOF
1522 1521 > [devel]
1523 1522 > discovery.randomize = False
1524 1523 > EOF
1525 1524
1526 1525 $ hg -R r1 outgoing r2 -T'{rev} ' --config extensions.blackbox= \
1527 1526 > --config blackbox.track='command commandfinish discovery'
1528 1527 comparing with r2
1529 1528 searching for changes
1530 1529 101 102 103 104 105 106 107 108 109 110 (no-eol)
1531 1530 $ hg -R r1 --config extensions.blackbox= blackbox --config blackbox.track=
1532 1531 * @5d0b986a083e0d91f116de4691e2aaa54d5bbec0 (*)> serve --cmdserver chgunix * (glob) (chg !)
1533 1532 * @5d0b986a083e0d91f116de4691e2aaa54d5bbec0 (*)> -R r1 outgoing r2 *-T{rev} * --config *extensions.blackbox=* (glob)
1534 1533 * @5d0b986a083e0d91f116de4691e2aaa54d5bbec0 (*)> found 101 common and 1 unknown server heads, 1 roundtrips in *.????s (glob)
1535 1534 * @5d0b986a083e0d91f116de4691e2aaa54d5bbec0 (*)> -R r1 outgoing r2 *-T{rev} * --config *extensions.blackbox=* exited 0 after *.?? seconds (glob)
1536 1535 $ cd ..
1537 1536
1538 1537 Even if the set of revs to discover is restricted, unrelated revs may be
1539 1538 returned as common heads.
1540 1539
1541 1540 $ mkdir ancestorsof
1542 1541 $ cd ancestorsof
1543 1542 $ hg init a
1544 1543 $ hg clone a b -q
1545 1544 $ cd b
1546 1545 $ hg debugbuilddag '.:root *root *root'
1547 1546 $ hg log -G -T '{node|short}'
1548 1547 o fa942426a6fd
1549 1548 |
1550 1549 | o 66f7d451a68b
1551 1550 |/
1552 1551 o 1ea73414a91b
1553 1552
1554 1553 $ hg push -r 66f7d451a68b -q
1555 1554 $ hg debugdiscovery --verbose --rev fa942426a6fd
1556 1555 comparing with $TESTTMP/ancestorsof/a
1557 1556 searching for changes
1558 1557 elapsed time: * seconds (glob)
1559 1558 round-trips: 1
1560 1559 heads summary:
1561 1560 total common heads: 1
1562 1561 also local heads: 1
1563 1562 also remote heads: 1
1564 1563 both: 1
1565 1564 local heads: 2
1566 1565 common: 1
1567 1566 missing: 1
1568 1567 remote heads: 1
1569 1568 common: 1
1570 1569 unknown: 0
1571 1570 local changesets: 3
1572 1571 common: 2
1573 1572 heads: 1
1574 1573 roots: 1
1575 1574 missing: 1
1576 1575 heads: 1
1577 1576 roots: 1
1578 1577 first undecided set: 1
1579 1578 heads: 1
1580 1579 roots: 1
1581 1580 common: 0
1582 1581 missing: 1
1583 1582 common heads: 66f7d451a68b
General Comments 0
You need to be logged in to leave comments. Login now