是否有与 VisualSVNServer 等效的 Mercurial 安装程序?

发布于 2024-08-21 12:43:04 字数 159 浏览 3 评论 0原文

我使用的是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

千仐 2024-08-28 12:43:04

我不知道,但设置 hgwebdir 非常简单。

分步说明

I don't know of one, but setting up hgwebdir was pretty simple.

Step-by-step instructions

念﹏祤嫣 2024-08-28 12:43:04

您真的需要 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.

手心的温暖 2024-08-28 12:43:04

如果您只想测试 Mercurial,那么只需安装命令行 (hg) 并启用包含一些文件的目录即可:

> hg init .
> hg add <file>
> hg commit -m"log msg"

此外,如果您想使用克隆、多个存储库等,您可以使用相同的初始存储库并当在其中输入“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:

> 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文