Code

Make gitk use --topo-order instead of --merge-order
authorLinus Torvalds <torvalds@g5.osdl.org>
Wed, 6 Jul 2005 23:55:53 +0000 (16:55 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Wed, 6 Jul 2005 23:55:53 +0000 (16:55 -0700)
It's cheaper to calculate, and doesn't give different results depending
on the order of the arguments passed in (and is thus more appropriate
for something like gitk that can validly take the unordered "--all" flag
to show all branches).

The previous dup fix seems to have fixed --topo-order.  Holler if you
still see problems.

gitk

diff --git a/gitk b/gitk
index f969c14f18fbfc9796a951627dca53b34c3d30d0..fa222df753c7ba4004b8dd99f9ae0715a9756c04 100755 (executable)
--- a/gitk
+++ b/gitk
@@ -37,7 +37,7 @@ proc getcommits {rargs} {
        set parsed_args $rargs
     }
     if [catch {
-       set commfd [open "|git-rev-list --header --merge-order $parsed_args" r]
+       set commfd [open "|git-rev-list --header --topo-order $parsed_args" r]
     } err] {
        puts stderr "Error executing git-rev-list: $err"
        exit 1