Signed-off-by: Alex Henrie <alexhenrie24@xxxxxxxxx> --- v2: use --no-graph instead of log.graph=false --- gitk-git/gitk | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gitk-git/gitk b/gitk-git/gitk index 23d9dd1fe0..24099ce0b8 100755 --- a/gitk-git/gitk +++ b/gitk-git/gitk @@ -411,8 +411,8 @@ proc start_rev_list {view} { } if {[catch { - set fd [open [concat | git log --no-color -z --pretty=raw $show_notes \ - --parents --boundary $args "--" $files] r] + set fd [open [concat | git log --no-color --no-graph -z --pretty=raw \ + $show_notes --parents --boundary $args "--" $files] r] } err]} { error_popup "[mc "Error executing git log:"] $err" return 0 @@ -559,8 +559,9 @@ proc updatecommits {} { set args $vorigargs($view) } if {[catch { - set fd [open [concat | git log --no-color -z --pretty=raw $show_notes \ - --parents --boundary $args "--" $vfilelimit($view)] r] + set fd [open [concat | git log --no-color --no-graph -z --pretty=raw + $show_notes --parents --boundary $args "--" + $vfilelimit($view)] r] } err]} { error_popup "[mc "Error executing git log:"] $err" return -- 2.32.0.2645.gc109162a1f