Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

hg serve in MacHg

I tried to find it in documentation, but couldn't, how can I run Mercurial server (as hg serve in terminal) from MacHg, is it possible at all? I'm on Mac 10.6 if it's important.

thanks.

like image 896
Burjua Avatar asked Nov 06 '22 10:11

Burjua


1 Answers

As per MacHG documentation:

You can use the command line version of Mercurial (via the Terminal) interchangeably with MacHg. You can freely download and install whichever version of Mercurial you want on your machine and it will not conflict with MacHg since an independent copy of Mercurial is bundled inside the MacHg application. (In fact MacHg does this to ensure there are no conflicts or other problems with the users Mercurial configuration.)

You can use regular mercurial binary from standard installation to serve repository

hg serve

And continue to use machg independently of that. Hope that solves your issue.

like image 173
pyfunc Avatar answered Nov 25 '22 07:11

pyfunc