vote up 3 vote down star

How do I configure the appropriate git hook to send a summary email whenever a set of changes is pushed to the upstream repository?

flag

4 Answers

vote up 6 vote down check

You could add something like this to your post-receive hook in $GITDIR/hooks, or use the script in the contrib directory of the source (Available here)

link|flag
If I reference that script in my hooks, does the referenced script have to reside on the upstream host or locally? – Head Feb 16 at 6:50
The host that is executing the hook, so in the case of a post-receive, the upstream host (whereas a post-commit hook would need the script on the host you're running the commit on). – mwalling Feb 16 at 7:16
Thanks, if I had more karma I'd upvote your answer. ;-) – Head Feb 16 at 7:19
Ahhh, but you can accept the answer and you'll both get more reputation! – Pat Notz Feb 16 at 14:09
vote up 1 vote down

setting hooks.showrev is making no distinguishable difference? :-/

Sample conf:

# less users/cj.git/config 
[core]
        repositoryformatversion = 0
        filemode = true
        bare = true
[hooks]
        mailinglist = cj@yoga.ee
        showrev = "git show -C %s; echo"
        emailprefix = "[sabu gitosis server] "
link|flag
Ah, turns out the git.kernel.org version respected hooks.showrev, but default git installation script didn't! Just replaced the script, chmod a+x and then it works! Still need to understand the showrev syntax though – UncleCJ 1 hour ago
vote up 1 vote down

I managed to do this, but had to opt for using the contrib script, not the other (perl) script by Alexandre Julliard. It seems fancier and more configurable, but with postfix I had no mail command which would accept "-s"? Here's my way:

http://pastie.textmate.org/695323

It would be nice to show some more info, like the full patch, gitweb link and commit graph as well, but this script can only do the first - if I play around with hooks.showrev it seems.

Anyway, cheers and thanks for the suggestions!

link|flag
vote up 1 vote down

The syntax for adding / customizing the script, for example for this particular purpose, is not crystal clear. I think both scripts are pretty multi-purpose, are they equivalent?

Anyway, thanks for the answer and link, I will sure be using it!

link|flag

Your Answer

Get an OpenID
or

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