是否有与 VisualSVNServer 等效的 Mercurial 安装程序?
我使用的是 Windows 2003R2
VisualSVNServer 安装和工作很容易。
我的任务是审查 Mercurial,但在为 Apache 设置目录时遇到问题。
Mercurial 的 VisualSVNServer 安装程序是否有等效项?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道,但设置 hgwebdir 非常简单。
分步说明
I don't know of one, but setting up hgwebdir was pretty simple.
Step-by-step instructions
您真的需要 Mercurial 服务器吗?
如果您只想通过公司内部网络共享 Mercurial 存储库,则可以将存储库放在网络共享上。
当然,此时您没有 Web 访问权限,但您可以通过 Active Directory 管理网络共享的权限。
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.
如果您只想测试 Mercurial,那么只需安装命令行 (hg) 并启用包含一些文件的目录即可:
此外,如果您想使用克隆、多个存储库等,您可以使用相同的初始存储库并当在其中输入“hgserve”时,这将启动一个小型hg服务器(无需设置!),然后在其他窗口中,您可以“hgclone”,“hgpull”,“hgpush”等。
最后,如果如果您需要在公司范围内安装管理多个存储库,那么您要么需要掌握 hgwebdir,要么还有一个名为“Mercurial Server”的工具,它可能更容易设置并且不需要 Apache。
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:
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.