I\'m searching for compelling Git and Mercurial clients on Mac OS X. The most clients I\'ve found so far were less compelling as I expected. Some of the clients are programmed e
For a graphical Mercurial client on Mac OS X, take a look at Murky.
I typically use the command line along with BBEdit for viewing my diffs.
Enable the extdiff extension by adding the following line to the [extensions] section of your .hgrc file:
extdiff=
Then add a section below
[extdiff]
cmd.bbdiff = bbdiff
opts.bbdiff = --wait --resume
Now when you execute hg bbdiff
the changed files will be diffed one at a time in BBEdit.