vote up 1 vote down star

I am working on projects for different clients using Mercurial as a VCS. I know how to set a default user, but is there a mean to set a different user for each project ?

flag

60% accept rate

1 Answer

vote up 2 vote down check

Just edit the file .hg/hgrc inside each repository. It's the same syntax as your ~/.hgrc but will only affect a specific repo.

In repo1/.hg/hgrc:

[ui]
username = Foo Bar <foobar@example.com>

And in repo2/.hg/hgrc:

[ui]
username = Something Else <something.else@example.com>
link|flag
nifty ! thank you very much ! – edomaur Sep 19 at 12:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.