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.

link|improve this question

43% accept rate
I finally tried reading <STDIN> which does give me the information, but then it is not available to the post-receive-email script to read.So, the email isn't sent. – user561638 Aug 24 '11 at 13:13
Still looking for help, thanks. – user561638 Aug 24 '11 at 13:13
feedback

1 Answer

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;
   #...
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.