Reputation: 4869
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
Upvotes: 1
Views: 62
Reputation: 21086
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.
Upvotes: 1