I prefer to use meld
as the diff tool. However it doesn't have an option to quickly solve all simple conflicts so in case of merging I'd like to use kdiff3
I've set merge.tool
to kdiff3 and diff.guitool
to meld but git difftool
still always run kdiff3
[merge]
tool = kdiff3
conflictstyle = diff3
[diff]
guitool = meld
renames = copies
mnemonicPrefix = true
[difftool]
prompt = false
How to make git difftool
run meld
?
diff.guitool
only applies if you use the--gui
flag.Setting
diff.tool
andmerge.tool
should makegit difftool
andgit mergetool
use different tools: