views:

333

answers:

2

I would like my subversion to send me an e-mail (and my co-workers) on every commit. There are many solutions to this, but I didn't find any that will enable me to use wildcard/regexp match on svn URL and use it to notify different group of people.

Anyone done that?

+1  A: 

The standard mailer.py supports regular expressions in the for_paths setting.

Martin v. Löwis
+3  A: 

You have to use svnlook to get more details from the post-commit hook script, for example if you use a shell script. Some examples can also be found on the tigris website, like this one, which uses Python.

RedGlyph