Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to update a bare repo, and have it do something after something has been pushed to it using a hook. Which one should I use? The git-scm book says that they both fire after all refs have been updated, so I don't know what the difference is.

share|improve this question

1 Answer

up vote 4 down vote accepted

From the documentation:

post-receive:

This supersedes the <post-update> hook in that it gets both old and new values of all the refs in addition to their names.

post-update:

The 'post-update' hook can tell what are the heads that were pushed, but it does not know what their original and updated values are, so it is a poor place to do log old..new. The <post-receive> hook does get both original and updated values of the refs. You might consider it instead if you need them.

share|improve this answer
All I want to do is launch a script that will update files on my server (via FTP) based on the working tree after I've pushed to that repo. So, it's three places: a local repo, another local repo, and an FTP location (non-git). When I push to one repo, I when would be the best time to launch such a script (I'll be using git diff to figure out what files to FTP over)? – trusktr Mar 11 '12 at 7:35
2  
post-receive is a super-set of the functionality of post-update, and it's after the heads are pushed so I imagine post-receive should be sufficient. – Waynn Lue Mar 12 '12 at 2:35
I agree with Waynn Lue - we do something similar and use post-receive – Nic Mar 12 '12 at 5:14
@trusktr Thanks for the edit, I didn't notice that the tags were getting eaten -- just re-edited to escape the tag. – Waynn Lue Mar 12 '12 at 6:05
Sure, no prob. heehe. – trusktr Mar 14 '12 at 2:55

Your Answer

 
discard

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

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