Better email notifications in subversion
Subversion is a great version control tool, but the scripts that accompany it are still immature. One of them, commit-email.pl is particularly bad. It goes on and on for hundreds of lines, and the end result is very poor usability. Earlier tonight, I found a better solution on the Web with color and all, then I fixed it. But I can’t figure out who I stole this from. In any case, here is my fixed commit-email.rb (run gunzip on it first). You may have to change the first line. To activate the script, edit the post-commit file of you repository (or create it from post-commit.tmpl) and make sure you have the following:
REPOS="$1"
REV="$2"
./commit-email.rb "$REPOS" "$REV"
where “commit-email.rb” is located in the same directory as “post-commit”.
Hi, another solution that found most usefull is to use fisheye from cenqua (http://cenqua.com/fisheye) which has email notification
Comment by opensourcereader — 23/10/2006 @ 17:21
Another solution that might work for you is SVNRevMailer ( http://dev.vdburgh.net/projects/SVNRevMailer/ )
If you schedule this tool it will notify you (by e-mail) of all changes in the specified repositories since the last run.
Comment by nxt — 3/1/2007 @ 11:39