[patch] prefer "git COMMAND" over "git-COMMAND" in gitk
From: Brandon Casey <hidden>
Date: 2016-06-15 22:43:00
Preferring git _space_ COMMAND over git _dash_ COMMAND allows the user to have only git and gitk in their path. e.g. when git and gitk are symbolic links in a personal bin directory to the real git and gitk. Perfect time to say Thanks for the great work. -brandon
--- gitk.orig 2007-02-13 20:46:46.000000000 -0600
+++ gitk 2007-03-19 17:46:55.142030000 -0500@@ -1904,7 +1904,7 @@ } else { set gdtargs [list "-S$highlight_files"] } - set cmd [concat | git-diff-tree -r -s --stdin $gdtargs] + set cmd [concat | git diff-tree -r -s --stdin $gdtargs] set filehighlight [open $cmd r+] fconfigure $filehighlight -blocking 0 fileevent $filehighlight readable readfhighlight
@@ -1956,7 +1956,7 @@ } if {[eof $filehighlight]} { # strange... - puts "oops, git-diff-tree died" + puts "oops, git diff-tree died" catch {close $filehighlight} unset filehighlight }