relnotes/next
author Martin von Zweigbergk <martinvonz@google.com>
Wed, 01 May 2019 09:34:47 -0700
changeset 42309 604c086ddde6
parent 42271 0ed293a3f00e
child 42334 bcb1a2b6cd00
permissions -rw-r--r--
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

== New Features ==

 * New config `commands.commit.post-status` shows status after successful
 commit.


== New Experimental Features ==

 * New config `experimental.log.topo` makes `hg log -G` use
   topological sorting. This is especially useful for aliases since it
   lets the alias accept an `-r` option while still using topological
   sorting with or without the `-r` (unlike if you use the `sort(...,
   topo)` revset).


== Bug Fixes  ==


== Backwards Compatibility Changes ==


== Internal API Changes ==

 * Matchers are no longer iterable. Use `match.files()` instead.