Windows 上的 Mercurial HG_NODE 挂钩变量

发布于 2024-12-11 23:56:37 字数 496 浏览 0 评论 0原文

我目前正在 Windows 上测试 Mercurial hooks,似乎我无法访问钩子变量......

这是 hgrc 内容:

[挂钩]
prechangegroup = ruby​​ prechangegroup.rb test1 test2 $HG_NODE

我也尝试使用 %HG_NODE%

这是 prechangegroup.rb 内容

ARGV.each do|a|
  输入“参数:#{a}”
结束

出:

参数:test1
参数:测试2
参数:$HG_NODE$

后面是正常的推送输出...

知道吗? (可能是一些愚蠢的事情,但我似乎找不到它)

谢谢

I'm currently testing mercurial hooks on windows and it seems like I cannot access hook variables....

here's hgrc content :

[hooks]
prechangegroup = ruby prechangegroup.rb test1 test2 $HG_NODE

I also tried with %HG_NODE%

Here's prechangegroup.rb content

ARGV.each do|a|
  puts "Argument: #{a}"
end

It prints out:

Argument: test1
Argument: test2
Argument: $HG_NODE$

Followed by the normal push output...

Any idea? (probably something stupid but, I can't seem to find it)

Thanks

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

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

发布评论

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

评论(2

凡尘雨 2024-12-18 23:56:37

HG_NODE 是一个环境变量。您不必在命令行上使用它作为参数。相反,你应该能够将它用作 puts ENV['HG_NODE'] (通过搜索引擎找到,因为我不是红宝石人)

HG_NODE is an environmental variable. You don't have to use it as arguments on the command line. Instead, you should be able to use it as puts ENV['HG_NODE'] (found through search engine as I'm not a ruby guy)

傻比既视感 2024-12-18 23:56:37

好的,我在 Mercurial 的网站上找到了一个很好的文档。

http://www.selenic.com/mercurial/hgrc.5.html#hooks

我尝试使用 %HG_NODE% 以外的变量(例如 %HG_URL%),并且该变量有效。
所以这可能意味着该变量无法从该钩子访问。

OK, I found a good documentation right on mercurial's website.

http://www.selenic.com/mercurial/hgrc.5.html#hooks

I tried with a variable other than %HG_NODE% like %HG_URL% and the variable worked.
So it probably means that the variable is inaccessible from that hook.

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