I am used to subversion, where the collaborate group would receive an email whenever someone commits. Is there a similar feature on GitHub, so the people working on the repository receives an email whenever a user pushes their changes?
feedback
|
|
To me I think you can have a look at Git Pull Request Email Bot https://github.com/samwho/GitHub-Pull-Request-Email-Bot A short description from the project page
The Git Pull Request Email Bot is a simple project that sends emails to a specified address every time a repository of your choice gets a pull request. It works by adding the run.php file to a Cron job and running it fairly often (though it doesn't really matter how long you leave it, it remembers what pull request it emailed you about last and won't email duplicates). It was originally written for the ThinkUp project to post pull requests to the mailing list and promote code review. Edit : For the post request its good as @Tim Hoolihan says. You can make a php page or so and get the post values I guess. Not tried . | ||||
|
feedback
|
|
You would use a post-hook, check out info at: http://help.github.com/post-receive-hooks/ http://wiki.webhooks.org/w/page/13385124/FrontPage There is a posthook named "Email", it only accepts one email address to send to, but it could be a distribution list. | |||
|
feedback
|