I've got a post receive hook setup on the remote repo that tries to determine the branch name of the incoming push as follows:

$branch = `git rev-parse --abbrev-ref HEAD`

What i'm finding, though, is that no matter what branch I push from my $branch variable gets set with 'master'.

Any ideas?

link|improve this question
feedback

2 Answers

up vote 7 down vote accepted

The post-receive hook gets the same data as the pre-receive and not as arguments, but from stdin. The following is sent for all refs:

oldRev (space) newRev (space) refName (Line feed)

You could parse out the ref name with this bash script:

while read oldrev newrev ref
do
    echo "$ref"
done
link|improve this answer
perfect, this is exactly what i needed. thanks! – jsleeuw May 13 '11 at 7:31
feedback

You need to read the arguments that are being passed to the script. That should have the branch name and new and old revisions and run for each branch pushed

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.