summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 960cea2)
raw | patch | inline | side by side (parent: 960cea2)
author | Linus Torvalds <torvalds@g5.osdl.org> | |
Wed, 6 Jul 2005 23:55:53 +0000 (16:55 -0700) | ||
committer | Linus 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.
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 | patch | blob | history |
index f969c14f18fbfc9796a951627dca53b34c3d30d0..fa222df753c7ba4004b8dd99f9ae0715a9756c04 100755 (executable)
--- a/gitk
+++ b/gitk
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