如何将主存储库存储在本地网络上?
我想知道如何将主 Mercurial 存储库存储在本地网络上,并且连接到它的每个开发人员都可以执行常规操作(就像在线使用 BitBucket 一样。)
谢谢。
I'm wondering how can I have the main Mercurial repository stored on the local network and every developer connected to it can do the usual things (just like with BitBucket online.)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查https://www.mercurial-scm.org/wiki/PublishingRepositories
如果仅在本地网络上,
hgserve
是最简单/最快的,并且支持 0 auth。当然,您始终可以使用 ssh,而无需设置服务器。
hg 克隆 ssh://your-main-server/path/to/repo
Check https://www.mercurial-scm.org/wiki/PublishingRepositories
If it's only on a local network,
hg serve
is the easiest/fastest with 0 auth support.of course you can always use ssh without the need of setting up a server.
hg clone ssh://your-main-server/path/to/repo