1

Could you please advise me about interactive two panels diff tool, something like http://www.sourcegear.com/diffmerge/, but for *nix console/ncurses or maybe somebody knows how DiffMerge can be run over SSH connection seamlessly?

Bart De Vos
  • 17,911
  • 6
  • 63
  • 82
deniszh
  • 142
  • 7

2 Answers2

4

Vim has vimdiff mode which is quite good. It obviously works in console mode too.

It give you color highlighting of differences and the possibility to edit the diffed files efficiently. Vim is also installable or even installed on most *nix system these days...

It is better if you already know Vim though...

skinp
  • 749
  • 1
  • 7
  • 19
  • 1
    Plus you can use `]c` `[c` to navigate to the differences and `dp` `do` to put or obtain them from the other pane – eventi Dec 15 '11 at 12:57
2

meld is a good but graphical diff tool. But you can use it over ssh X forward or with sshfs.

Stone
  • 7,011
  • 1
  • 21
  • 33