-1

I recently started using mercurial. I often want to check differences between revisions while ignoring whitespace (e.g. due to running dos2unix on certain files). Now, for hg mdiff, I can do this using a modified diff command, hg wdiff, the arrangement of which is described here:

Whitespace-ignoring diffs with Mercurial

How can I do the same for hg mdiff?

einpoklum
  • 118,144
  • 57
  • 340
  • 684

1 Answers1

0

You probably can't. The Mergediff extension has a very different implementation, that's likely not supported by command-line diff tools (if only because it has to compare 3 versions instead of just 2).

You could extend the Mergediff extension to have a whitespace-ignoring mode, I guess.

djc
  • 11,603
  • 5
  • 41
  • 54