Daniel Mošmondor
Daniel Mošmondor

Reputation: 19956

subversion e-mail notification

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?

Upvotes: 3

Views: 1104

Answers (2)

Martin v. Löwis
Martin v. Löwis

Reputation: 127447

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

Upvotes: 2

RedGlyph
RedGlyph

Reputation: 11559

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.

Upvotes: 4

Related Questions