I'd like to set up my github repository to email a mailing list
whenever a commit occurs. Normally with git, I'd use a post-receive
hook like this:

git config hooks.mailinglist [email protected]
git config hooks.emailprefix "[git] "
git config hooks.showrev "git show -C -M --name-status %s; echo"
chmod ug+x hooks/post-receive

It looks like github has a way to do a POST with some JSON on post-
receive, but I'm not sure where I'd POST to. Is there a free server
(or one that's part of my github account) I can point my github
repository to, to get commit email notifications similar to what I get
with the post-receive script that comes with git?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"GitHub" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/github?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to