We have a large repo and a lots of commiters.

I want to track history of a single file. Whenever someone changes it (push changes to my central repository), I get the email with diff and author name.

I know that making a pre-commit hook, to do so would resolve a problem for me, however I would have to propagate the script to all commiters.

Is there a pre-merge (or post-merge) hook?

Temporary solution would be a cron task checking every 10 min, who changes the file.

link|improve this question

62% accept rate
feedback

1 Answer

Yes, there is a post-merge hook. Based on your description, however, you probably want to use the post-receive hook on your "central" repository. The Pro-Git hooks page describes it quite well.

link|improve this answer
Yes, that's exactly what I need. Thank you :} – haras.pl Nov 3 '11 at 7:52
Great, glad it helped. Don't forget to mark the answer as accepted. :) – Russell Davis Nov 4 '11 at 0:12
feedback

Your Answer

 
or
required, but never shown

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