Windows 上的 Mercurial HG_NODE 挂钩变量
我目前正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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 asputs ENV['HG_NODE']
(found through search engine as I'm not a ruby guy)好的,我在 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.