In my post-receive hook, I would like to get the branch the user is committing on, store in a variable, and pass it to a web service (Hudson build system). Can I use the refname passed into STDIN for this? If so, how do I get it? I've tried
$3, but this doesn't seem to work.
Also, adding the line
echo $3
shows just a blank.
Thanks!