зеркало из https://github.com/microsoft/git.git
gitk: Show diffs for boundary commits
With this we run git-diff-tree on a commit even if we think it has no parents, either because it really has no parents or because it is a boundary commit. This means that gitk shows the diff for a boundary commit when it is selected. Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
Родитель
16c1ff968a
Коммит
7b5ff7e7d7
4
gitk
4
gitk
|
@ -2386,9 +2386,9 @@ proc selectline {l isnew} {
|
|||
|
||||
$cflist delete 0 end
|
||||
$cflist insert end "Comments"
|
||||
if {$nparents($id) == 1} {
|
||||
if {$nparents($id) <= 1} {
|
||||
startdiff $id
|
||||
} elseif {$nparents($id) > 1} {
|
||||
} else {
|
||||
mergediff $id
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче