用perl编写的post-receive钩子如何获取分支名称?

发布于 2024-12-01 02:27:49 字数 91 浏览 1 评论 0原文

我有一个用 perl 编写的 post-receive 钩子。我需要能够弄清楚正在推送到哪个分支。我该怎么做?我尝试查看 @ARGV 和 $ARGV[2] 但没有成功。

I have a post-receive hook that is written in perl. I need to be able to figure out which branch is being pushed to. How can I do this? I tried looking at @ARGV and $ARGV[2] without success.

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

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

发布评论

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

评论(1

蒗幽 2024-12-08 02:27:49

git 文档中的关键是 post-receive 挂钩不接收任何参数:

该挂钩针对接收操作执行一次。它不带任何参数,但获取与 <> 相同的信息。 hook 在其标准输入上执行操作。

这是我用来解析 ref 的一些 Perl 代码:

while (<>) {
   chomp;
   next unless my($old,$new,$ref) =
      m/ ^ ([0-9a-f]+) \s+    # old SHA-1
           ([0-9a-f]+) \s+    # new SHA-1
           refs\/heads\/(.*?) # ref
         \s* $ /x;
   #...
}

The key from the git documentation is that the post-receive hook receives no arguments:

This hook executes once for the receive operation. It takes no arguments, but gets the same information as the <> hook does on its standard input.

Here is some perl code that I have used to parse ref:

while (<>) {
   chomp;
   next unless my($old,$new,$ref) =
      m/ ^ ([0-9a-f]+) \s+    # old SHA-1
           ([0-9a-f]+) \s+    # new SHA-1
           refs\/heads\/(.*?) # ref
         \s* $ /x;
   #...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文