When specifying a filename as an argument to gitk, ie. $ gitk apply.c gitk does not show the diff when the file newly created. That 'newly created' commit is the last one gitk gets from 'git-rev-list' so gitk thinks it has no parent while it normally does (except that the commit itself is the root commit). This patch is to (try to) fix this problem. P.S, is it good if gitk also has a '--root' option like git-whatchanged? Signed-off-by: Alecs King <alecsk@gmail.com> diff --git a/gitk b/gitk index f12b3ce..688ee12 100755 --- a/gitk +++ b/gitk @@ -2288,10 +2288,10 @@ proc selectline {l isnew} { $cflist delete 0 end $cflist insert end "Comments" - if {$nparents($id) == 1} { - startdiff $id - } elseif {$nparents($id) > 1} { + if {$nparents($id) > 1} { mergediff $id + } else { + startdiff $id } } -- Alecs King - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sat Dec 31 19:08:10 2005
This archive was generated by hypermail 2.1.8 : 2005-12-31 19:08:19 EST