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.
feedback
|
|
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:
| |||
|
feedback
|