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.
This commit is contained in:
parent
b490a99176
commit
806ce09718
7
gitk
7
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
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user