Manual Diff Alignment in KDiff3

Ok, I figured it out. To add manual diff alignment in KDiff3: Put the cursor at the beginning of some text in one child window Hit Ctrl+Y Put the cursor at the beginning of some text in another child window Hit Ctrl+Y

How to configure kdiff3 instead of emerge as a git mergetool?

Recent Git versions have built-in support for kdiff3, so there’s no need to configure it manually using the generic cmd and args settings. Instead do: $ git config –global merge.tool kdiff3 And if kdiff3 is not in your PATH environment also do: $ git config –global mergetool.kdiff3.path /Applications/kdiff3.app/Contents/MacOS/kdiff3 This makes git mergetool launch kdiff3. Note … Read more

How can I configure KDiff3 as a merge tool and diff tool for git?

These sites were very helpful, almost, mergetool and difftool. I used the global configuration, but can be used by repository without problems. You just need to execute the following commands: git config –global merge.tool kdiff3 git config –global mergetool.kdiff3.path “C:/Program Files/KDiff3/bin/kdiff3.exe” git config –global mergetool.kdiff3.trustExitCode false git config –global diff.guitool kdiff3 git config –global difftool.kdiff3.path … Read more