BILL
BILL

Reputation: 4869

How to set different user for each mercurial repository?

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

Answers (1)

Laurens Holst
Laurens Holst

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

Related Questions