Browse Source

Make gitk use --topo-order instead of --merge-order

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.
maint
Linus Torvalds 20 years ago
parent
commit
889adfe314
  1. 2
      gitk

2
gitk

@ -37,7 +37,7 @@ proc getcommits {rargs} { @@ -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

Loading…
Cancel
Save