Johannes Sixt <j.sixt@xxxxxxxxxxxxx> writes: >Murphy, John schrieb: > >On Windows, 'gitk --all' starts with branch-0797, on Linux it starts with >branch-0999 aka master. That script gives me a repository I can test against. thanks. The start_rev_list function calls parseviewrevs and expands the arguments into a list of appropriate revision ids. In this case --all gets expanded to a list of 1000 sha1 ids. This is appended to any other view arguments and passed to git log on the command line yielding our error. git log can accept a --all argument it seems so it looks like we can just short-circuit the parseviewrevs function when --all is passed in and return --all instead of expanding the list. The following seems to work for me with this test repository. John, if this works for you can you also check that editing and creating new gitk views on your real repository continues to work ok. commit 7f289ca8370e5e2f9622a4fbc30b934eb97b984f Author: Pat Thoyts <patthoyts@xxxxxxxxxxxxxxxxxxxxx> Date: Tue Sep 22 00:55:50 2009 +0100 Avoid expanding --all when passing arguments to git log. There is no need to expand --all into a list of all revisions as git log can accept --all as an argument. This avoids any command-line length limitations caused by expanding --all into a list of all revision ids. Signed-off-by: Pat Thoyts <patthoyts@xxxxxxxxxxxxxxxxxxxxx> diff --git a/gitk b/gitk index a0214b7..635b97e 100755 --- a/gitk +++ b/gitk @@ -241,6 +241,8 @@ proc parseviewrevs {view revs} { if {$revs eq {}} { set revs HEAD + } elseif {$revs eq "--all"} { + return $revs } if {[catch {set ids [eval exec git rev-parse $revs]} err]} { # we get stdout followed by stderr in $err -- Pat Thoyts http://www.patthoyts.tk/ PGP fingerprint 2C 6E 98 07 2C 59 C8 97 10 CE 11 E6 04 E0 B9 DD -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html