I am using windows 2003R2
VisualSVNServer installs and works easily.
I have been tasked with reviewing Mercurial, but I'm having trouble setting up the directory for Apache.
is there any equivialant of the VisualSVNServer installer for Mercurial?
I am using windows 2003R2
VisualSVNServer installs and works easily.
I have been tasked with reviewing Mercurial, but I'm having trouble setting up the directory for Apache.
is there any equivialant of the VisualSVNServer installer for Mercurial?
If you just want to test Mercurial, it is as easy as just installing the command line (hg) and enable a directory with some files:
> hg init .
> hg add <file>
> hg commit -m"log msg"
Also if you want to play with cloning, multiple repositories etc, you could use the same initial repository and when inside it type "hg serve", which will launch a small hg server (no setup required!), then in an other windows, you can "hg clone", "hg pull", "hg push" etc.
Finally, if you need a company-wide installation managing multiple repos, then either you need to master hgwebdir, or else there is also a tool called "Mercurial Server" which might be easier to setup and does not requires Apache.
Hope it'll help.
Cheers,
Christophe.
Do you really need a Mercurial server?
If you just want to share Mercurial repositories over your internal company network, you can just put the repos on a network share.
Of course, you don't have web access then, but you can manage permissions on the network share via Active Directory.