I have the post-receive hook running with a configuration in gitolite that emails a group when any files change in a repo on a certain branch. Now, I have a request to setup email notification for a different "TO" when certain files change in the same repo. How do I set up multiple configs for the post-receive email hook? Also, how do I trigger a post-receive hook based on files that changed? I don't believe the hook has file info, right?

link|improve this question

43% accept rate
feedback

1 Answer

You will have to inspect git log --name-only oldrev..newrev output to determine if any files that you are interested are changed.

link|improve this answer
ok, but how do I configure multiple recipients for different emails? – user561638 Nov 8 '11 at 3:31
There is a gitolite_user variable you can read. Check out the sample hook included in gitolite. – Adam Dymitruk Nov 9 '11 at 5:34
Thanks Adam, but I am not sure how that helps me? The TO I need to send to is an email alias, and there are 2 different lists depending on the branch and/or the files modified. – user561638 Nov 9 '11 at 20:29
Also, I tried your command git log ... in my post-receive hook, and it doesn't seem to give any results. Are you sure I can use a git command in a post-receive hook? – user561638 Nov 9 '11 at 20:30
feedback

Your Answer

 
or
required, but never shown

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