Skip to content

Commit e2161bc

Browse files
davvidgitster
authored andcommitted
mergetools/kdiff3: do not use --auto when diffing
The `kdiff3 --auto` help message is, "No GUI if all conflicts are auto- solvable." This flag was carried over from the original mergetool commands. diff_cmd() is for two-way comparisons only so remove the superfluous flag. Signed-off-by: David Aguilar <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b120ef3 commit e2161bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mergetools/kdiff3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff_cmd () {
2-
"$merge_tool_path" --auto \
2+
"$merge_tool_path" \
33
--L1 "$MERGED (A)" --L2 "$MERGED (B)" \
44
"$LOCAL" "$REMOTE" >/dev/null 2>&1
55
}

0 commit comments

Comments
 (0)