使用扩展修改核心 Mercurial 命令的行为?

发布于 2024-09-15 00:31:40 字数 209 浏览 3 评论 0原文

是否可以通过创建扩展来修改核心 Mercurial 命令的行为(例如 hg commithg status)?

例如,是否可以修改 hg commit 以要求用户输入问题跟踪 ID?

我知道可以使用挂钩脚本,但此类脚本不是通过 hg pull 分发的,并且需要为使用的每个存储库进行配置。

Is it possible to modify the behavior of a core Mercurial command (e.g. hg commit or hg status) by creating an extension?

For example, would it be possible to modify hg commit to ask the user to enter an issue tracking ID?

I understand that hook scripts could be used, but such scripts are not distributed via hg pull and need to be configured for every repository used.

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

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

发布评论

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

评论(2

小嗲 2024-09-22 00:31:40

回答我自己的问题

Mercurial API 提供了 extensions.wrapcommand(table, command,wrapper) 方法似乎提供了所需的功能。

从源代码来看:

将名为“command”的命令包装在
表。

替换命令表中的命令
与包装纸。包装后的命令将
插入到命令表中
由表参数指定。这
包装器将被称为
包装器(orig,*args,**kwargs)其中
orig 是原件(包装)
函数,*args、**kwargs 是
传递给它的参数。

几个例子:

Answering my own question

The Mercurial API provides the extensions.wrapcommand(table, command, wrapper) method which seems to provide the desired feature.

From the source code:

Wrap the command named `command' in
table.

Replace command in the command table
with wrapper. The wrapped command will
be inserted into the command table
specified by the table argument. The
wrapper will be called like
wrapper(orig, *args, **kwargs) where
orig is the original (wrapped)
function, and *args, **kwargs are the
arguments passed to it.

A couple examples:

  • The prompt extension by Steve Losh
  • The nobranch extension from Fog Creek
美胚控场 2024-09-22 00:31:40

请注意:扩展和挂钩都具有完全相同的大规模部署限制。在这两种情况下,您都必须引导内部用户下载一个软件,无论是挂钩还是扩展,然后在其 homedir 的 hgrc 或存储库中启用它。

对于钩子和扩展,您可以使用任何机制分发软件,并可以在 /etc/mercurial/hgrc 中全局启用它们。

扩展比钩子有一些优势,因为它们可以深入 Mercurial 内部,但部署是相同的。

Just to note: both extensions and hooks have exactly the same mass-deployment limitations. In both cases you have to induce your internal users to download a piece of software, be it a hook or an extension, and then to enable it in either the hgrc in their homedir or within the repo.

For both hooks and extensions you can distribute the software using any mechanism and can enable them globally in /etc/mercurial/hgrc

Extensions have some advantages over hooks as to how deep they can dig in the mercurial internals, but deployment is identical.

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