如何启用Mercurial扩展(例如mq)?
我已经从 Ubuntu 软件包存储库安装了 Mercurial。但是我不知道如何启用扩展(q*
命令)。我该怎么做呢?帮助显示
enabled extensions:
style (no help text available)
我要启用mq和hgk。
I have installed Mercurial from the Ubuntu package repository. However I don't know how to enable extensions (q*
commands). How should I do that? The help shows that
enabled extensions:
style (no help text available)
I want to enable mq and hgk.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在
hgrc
中启用扩展。http://www.selenic .com/mercurial/hgrc.5.html#extensions
Enable extensions in
hgrc
.http://www.selenic.com/mercurial/hgrc.5.html#extensions
如果您想一次性执行此操作,您还可以在不编辑 hgrc 的情况下启用扩展。 [来源]
You can also enable an extension without editing the hgrc, if you want to do it one off. [Source]
这两个扩展的文档显示了如何启用它们:MQ、Hgk。
启用扩展的常用方法是在
.hgrc
(或某些 Windows 系统上的Mercurial.ini
)中添加一行。 hgrc 文档对此进行了解释。在以下情况下,请将其添加到您的配置文件中:
您可以将其放入全局配置文件或存储库配置文件中,具体取决于您是否希望在每个存储库中或仅在特定存储库中激活扩展。
The documentation of both extensions shows how to enable them : MQ, Hgk.
The usual way to enable an extension is to add a line to your
.hgrc
(orMercurial.ini
on some Windows system). It is explained in the hgrc documentation.In your following case, add this to your configuration file :
You can put it in your global configuration file or the repository one, depending if you want to have the extensions activated in every repository or just a specific one.
hg help extensions
的输出以因此只需添加
即可启用 MQ 扩展。
The output of
hg help extensions
starts withSo just add
to enable the MQ extension.