Are there any good graphical Git and Hg/Mercurial clients on Mac OS X?

前端 未结 13 1364
轻奢々
轻奢々 2021-01-30 11:07

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

13条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-30 11:55

    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.

提交回复
热议问题