after all these years i still mostly use kdiff3
It remains the best option for 3-way merge. For diff, I find myself just reading the raw diff output.
Meld is a visual diff and merge tool targeted at developers
21–30 of 146 posts
Re: Meld is a visual diff and merge tool targeted at developers
#22Or on terminals https://github.com/mookid/diffr with specific settings that use 256 colors for highlighting word differences as well.
But for manual merging I haven't found anything better than ediff. That's the only reason I install emacs on my work machines. Seemless integration into a text editor is just unbeatable.
Re: Meld is a visual diff and merge tool targeted at developers
#23[0]: https://winmerge.org
Re: Meld is a visual diff and merge tool targeted at developers
#24Re: Meld is a visual diff and merge tool targeted at developers
#25Re: Meld is a visual diff and merge tool targeted at developers
#26BeyondCompare is much better and available on macOS too.
Re: Meld is a visual diff and merge tool targeted at developers
#27BeyondCompare is much better and available on macOS too.
Re: Meld is a visual diff and merge tool targeted at developers
#28I definded this wrapper script ~/bin/git-ydiff-s:
#!/bin/sh
git diff "$@" | ydiff -s --wrap --width=0
with which you can do `git ydiff-s` in your repos easily.Re: Meld is a visual diff and merge tool targeted at developers
#29On Windows, how does Meld compare with WinMerge[0]? [0]: https://winmerge.org
If you can accept a paid version of WinMerge for Linux and Mac I'd highly recommend BeyondCompare (U$ 30.00).
Re: Meld is a visual diff and merge tool targeted at developers
#30I don't like the whole "balloons with tails" thing meld does. xxdiff strikes the best balance between "being a graphical tool" and "not having distracting clutter" in my opinion.