如何为每个mercurial存储库设置不同的用户?
我在 IIS7 上安装 Mercurial 存储库(使用 cgi)。我有两个不同的存储库,我想共享每个存储库的权利。我该怎么办?我的 hgweb.config
[paths]
/ = c:\repos\*
[web]
allow_push = user1
push_ssl = true
allow_archive = gz bz2 zip
style = paper
I install mercurial repository on IIS7 (use cgi). I have two different repos and I want to share the rights for each repository. How do I do? My hgweb.config
[paths]
/ = c:\repos\*
[web]
allow_push = user1
push_ssl = true
allow_archive = gz bz2 zip
style = paper
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
[web]
部分放入每个存储库的.hg/hgrc
文件中。通过这种方式,您可以指定存储库特定的用户、样式、描述等。You can put the
[web]
section in each individual repository’s.hg/hgrc
file. This way you can specify repository-specific users, style, description, etc.