From 806ce0971895249d1ebb641b77f1fa870d86d73e Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Wed, 22 Jun 2005 18:15:15 +1000 Subject: [PATCH] Account for indentation of the checkin comments by git-rev-list This involves adding indentation when we read a commit with git-cat-file and trimming the whitespace from the headline. --- gitk | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gitk b/gitk index 922701ca..1606c38d 100755 --- a/gitk +++ b/gitk @@ -174,10 +174,15 @@ proc parsecommit {id contents listed} { } } else { if {$comment == {}} { - set headline $line + set headline [string trim $line] } else { append comment "\n" } + if {!$listed} { + # git-rev-list indents the comment by 4 spaces; + # if we got this via git-cat-file, add the indentation + append comment " " + } append comment $line } } -- 2.11.0