How can I make mercurial order the graph log output of hg log -G
by commit date?
Using hg log -r 'sort(all(), -date)'
works without the graph log option as answered in [1], but that solution doesn't seem to have any effect on the order of the graph log.
I'm looking for a mercurial equivalent of git log --graph --date-order
.