In early days, all projects managed by git (except for git itself) had the product of a fairly mature development history in their first commit, and it was deemed unnecessary clutter to show additions of these thousands of paths as a patch. "git log" learned to show the patch for the initial commit without requiring --root command line option at 0f03ca9 (config option log.showroot to show the diff of root commits, 2006-11-23). Teach gitk to respect log.showroot. Signed-off-by: Marcus Karlsson <mk@xxxxxxxxxx> --- Improved the commit message after suggestion from Zbigniew Jedrzejewski-Szmek. gitk-git/gitk | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/gitk-git/gitk b/gitk-git/gitk index 4cde0c4..40ea73f 100755 --- a/gitk-git/gitk +++ b/gitk-git/gitk @@ -7402,7 +7402,7 @@ proc addtocflist {ids} { } proc diffcmd {ids flags} { - global nullid nullid2 + global log_showroot nullid nullid2 set i [lsearch -exact $ids $nullid] set j [lsearch -exact $ids $nullid2] @@ -7436,7 +7436,11 @@ proc diffcmd {ids flags} { lappend cmd HEAD } } else { - set cmd [concat | git diff-tree -r $flags $ids] + set cmd [concat | git diff-tree -r] + if {$log_showroot eq true} { + set cmd [concat $cmd --root] + } + set cmd [concat $cmd $flags $ids] } return $cmd } @@ -11403,6 +11407,11 @@ catch { } } +set log_showroot true +catch { + set log_showroot [exec git config --get log.showroot] +} + if {[tk windowingsystem] eq "aqua"} { set mainfont {{Lucida Grande} 9} set textfont {Monaco 9} -- 1.7.7 -- 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