comparison mercurial/configitems.py @ 42309:604c086ddde6

log: add config for making `hg log -G` always topo-sorted I (and everyone else at Google) have an log alias that adds graph mode and templating. I have another one that builds on the first and also restricts the set of revisions to only show those I'm most likely to care about. This second alias also adds topological sorting. I still sometimes use the first one. When I do, it very often bothers me that it's not topologically sorted (branches are interleaved). This patch adds a config option for always using topological sorting with graph log. The revision set is sorted eagerly, which seems like a bad idea, but it doesn't seem to make a big difference in the hg repo (150ms). I initially tried to instead wrap the user's revset in sort(...,topo), but that seemed much harder. Differential Revision: https://phab.mercurial-scm.org/D6331
author Martin von Zweigbergk <martinvonz@google.com>
date Wed, 01 May 2019 09:34:47 -0700
parents 0f01394457a0
children 526750cdd02d
comparison
equal deleted inserted replaced
42308:1ce46f0ee218 42309:604c086ddde6
527 default=None, 527 default=None,
528 ) 528 )
529 coreconfigitem('experimental', 'evolution.bundle-obsmarker', 529 coreconfigitem('experimental', 'evolution.bundle-obsmarker',
530 default=False, 530 default=False,
531 ) 531 )
532 coreconfigitem('experimental', 'log.topo',
533 default=False,
534 )
532 coreconfigitem('experimental', 'evolution.report-instabilities', 535 coreconfigitem('experimental', 'evolution.report-instabilities',
533 default=True, 536 default=True,
534 ) 537 )
535 coreconfigitem('experimental', 'evolution.track-operation', 538 coreconfigitem('experimental', 'evolution.track-operation',
536 default=True, 539 default=True,