Live data from Hacker News

Meld is a visual diff and merge tool targeted at developers

meldmerge.org

21–30 of 146 posts

Re: Meld is a visual diff and merge tool targeted at developers

#22
For visualization I really like kdiff3.

Or 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

#28
On the terminal I find `ydiff -s --wrap --width=0` very good for a comprehensible side-by-side diff: https://github.com/ymattw/ydiff

I 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

#29

On Windows, how does Meld compare with WinMerge[0]? [0]: https://winmerge.org

WinMerge is better. It has better UI: bottom line comparison, keyboard shortcuts, copy left to right and vice-versa, lots of preferences settings, etc. Too bad it is Windows-only.

If you can accept a paid version of WinMerge for Linux and Mac I'd highly recommend BeyondCompare (U$ 30.00).

Post reply on HN