如何在 Mercurial 中按存储库设置不同的用户名?
我正在使用 Mercurial 作为 VCS 为不同的客户开发项目。我知道如何设置默认用户,但是有没有办法为每个项目设置不同用户?
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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需编辑每个存储库内的文件
.hg/hgrc
即可。它与您的~/.hgrc
语法相同,但只会影响特定的存储库。在
repo1/.hg/hgrc
中:在
repo2/.hg/hgrc
中: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
:And in
repo2/.hg/hgrc
:除了为每个存储库设置用户名之外,您还可以使用 Mercurial 动态用户名 扩展并为全局
~/.hgrc
中的特定位置设置用户名,如下所示:Alternatively to setting username for each repository you can use Mercurial Dynamic Username extension and set usernames for specific locations in your global
~/.hgrc
like this: