learningtech
learningtech

Reputation: 33673

Alert team members of SVN commit?

I'm hosting my own svn repository on ubuntu 8.04. Is there a way for svn to send emails to team members whenever a commit has happened?

If coding is required, the only language I'm able to use on a linux server is PHP. So I could write a php script to be triggered by svn.

Can anyone tell me how to hook up my php script to an svn commit? Or is there another way to do this?

Upvotes: 1

Views: 3937

Answers (4)

Svisstack
Svisstack

Reputation: 16616

You can simple to do, read this pages:

  1. petefreitag
  2. svnbook

This web links describing how to use subversion hooks, and what types of her exist and how to configure it.

Upvotes: 2

splash
splash

Reputation: 13327

You could also monitor your repositories with WebSVN (a PHP based svn repository browser) and a RSS reader of your choice.

Upvotes: 1

Nate
Nate

Reputation: 30636

You might want to look into Commit Monitor. This is a windows-only solution I believe, but it allows your team members to "opt-in" to alerts, by checking the repository every 30 minutes or so.

Upvotes: 8

zerkms
zerkms

Reputation: 254886

The proper way of doing this is to implement the hooks. But to be clear - the tons of emails will be annoying.

Upvotes: 3

Related Questions