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?

link|improve this question

you might want to see this: stackoverflow.com/questions/552360/git-push-email-notification – Jack River Aug 10 '11 at 17:46
@Jack River As this is on github , you will not be able to do those. – Hari K T Aug 11 '11 at 9:30
Go to the admin section of your github repository, select "Service Hooks" and install the service hook "Email" from the list. That's all. – brotherli May 3 at 13:10
feedback

3 Answers

up vote 2 down vote accepted

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

What is this?

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 .

link|improve this answer
feedback

I think you want to look at the email service hook.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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