Mercurial:如何在我自己的服务器上设置它?
我有一台服务器,我想使用 Mercurial 来协调一个项目。我可以创建一个存储库,将其放在服务器上,然后让其他人克隆它,然后从中推送/拉取吗?有什么方法可以用密码保护它吗?
I've got a server and I want to use Mercurial to coordinate a project. Can I just make a repo, put it on the server, and have everyone else clone it, then push/pull from it? Is there some way to password protect it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。 wiki 对各种机制有很好的详细说明。 hgweb 和 hgwebdir (我用过)可能是最简单的。默认情况下,推送处于关闭状态,但可以启用。它们是简单的 Python 脚本,可以使用 Apache 进行身份验证。
Yes. The wiki has a good breakdown on the various mechanisms. hgweb and hgwebdir (which I've used) are probably the simplest. push is off by default, but can be enabled. They're simple Python scripts that can use Apache for authentication.
根据使用存储库的人数,您可以仅使用网络共享进行推送和拉取(例如:
\\myserver\repositories\myproject\
)。我们在内部这样做已经有一段时间了,没有出现任何问题,但是我们只有 3 个人访问过存储库。如果您有更多,那么您可以考虑执行以下操作 Matthew Flaschen 表示并使用发布方法。Depending on how many people you have using the repository, you can just use a network share to push and pull from (eg:
\\myserver\repositories\myproject\
). We have been doing this internally for some time with no issues, however we only have 3 people who ever access the repositories. If you have more then you may consider doing what Matthew Flaschen says and use a publishing method.