如何在 Mercurial 中设置我的用户名?

发布于 2025-01-07 17:06:40 字数 621 浏览 0 评论 0原文

运行 Mercurial 时,我收到此错误:

t3@des:gem5$ hg qnew my_p.diff
abort: no username supplied (see "hg help config")

hg help config 说:

The configuration files use a simple ini-file format. A configuration file
consists of sections, led by a "[section]" header and followed by "name =
value" entries:

  [ui]
  username = Firstname Lastname <[email protected]>
  verbose = True

但是那个 ini 文件在哪里?

When running Mercurial I get this error:

t3@des:gem5$ hg qnew my_p.diff
abort: no username supplied (see "hg help config")

the hg help config says:

The configuration files use a simple ini-file format. A configuration file
consists of sections, led by a "[section]" header and followed by "name =
value" entries:

  [ui]
  username = Firstname Lastname <[email protected]>
  verbose = True

But where is that ini file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓦然回首 2025-01-14 17:06:41

假设您在 Linux 上,在您的主目录或相关存储库目录中创建 .hgrc 文件,

dirunderhgcontrol/.hg/.hgrc

将您在问题中所述的信息(ui,用户名,详细...)添加到新文件中,然后尝试一下。

Assuming your on linux, create the .hgrc file in either your home directory or in the repository dir in question,

dirunderhgcontrol/.hg/.hgrc

Add the info(ui, username, verbose...) you stated in your question to the new file and then give it a try.

吹梦到西洲 2025-01-14 17:06:40

hg 帮助配置

默认情况下这些文件不存在,您必须创建
自己适当的配置文件:全局配置,例如
用户名设置通常放入
“%USERPROFILE%\mercurial.ini”或“$HOME/.hgrc”和本地配置
被放入每个存储库的“/.hg/hgrc”文件中。

hg help config

These files do not exist by default and you will have to create the
appropriate configuration files yourself: global configuration like
the username setting is typically put into
"%USERPROFILE%\mercurial.ini" or "$HOME/.hgrc" and local configuration
is put into the per-repository "/.hg/hgrc" file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文