Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write a pre-receive hook for git that will pull the latest version of the code being pushed and run unit tests against it. My code is below, but when it gets to "git checkout $newrev", I get:

remote: fatal: reference is not a tree: 188de39ca68e238bcd7ee9842a79397f39a5849e

What do I need to do to get a checkout of the code being pushed before the receive has happened?

#!/bin/bash
while read oldrev newrev refname
do
  echo "Preparing to run unit tests for $newrev"
  TEST_DIR=/opt/git/sommersault-push-tests/sommersault

  # check out this version of the code
  unset GIT_DIR
  echo $refname
  cd $TEST_DIR
  git checkout $newrev

  ...do more stuff...
done
share|improve this question
2  
Are you sure you can do that? How can it checkout code it hasn't received? I would think you'd need to do a post-receive hook and then have it rollback (reset) if the tests fail. – wadesworld Aug 20 '12 at 18:06
I think @wadesworld gave you the correct advice. I could just point this link as a solution for a similar problem: stackoverflow.com/questions/2087216/… – Nicolás Aug 20 '12 at 18:51
Ah, okay. I was starting out looking at this post - codeutopia.net/blog/2011/06/30/… - which seems to imply it's possible to get the code. (It uses "git archive" rather than "git checkout", though I couldn't get either to work.) But it makes sense that it wouldn't have access to the code yet. – Maria Gullickson Aug 20 '12 at 19:21
Actually, I take that back. The githooks manpage says This hook is invoked by git-receive-pack on the remote repository which indicates it happens after the new content is received. Note however that it receives a line of input for each ref to be updated.Not sure the cause of the error yet though.. – wadesworld Aug 20 '12 at 21:02

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.