vote up 6 vote down star
3

I'm working on a project with a couple other members and it would be nice if I could get system tray alerts when someone commits to the project.

I've seen tools for this before and googled around a bit but I couldn't find the tool I've used in the past. Can anyone point me to a decent SVN monitoring tool?

flag

63% accept rate
You did not mention your platform and most answers seems to assume you use Windows. – bortzmeyer Jun 16 at 11:47

7 Answers

vote up 8 vote down

SVN Monitor

From the website...

  • Perform all your commonly-used svn-actions (update, commit, revert, diff ...)
  • Keep your source up-to-date with minimum conflicts and manual merges
  • Browse and search the svn log from your computer while offline (disconnected from the svn repository)
  • Be constantly aware of your local source modifications, without using any Visual Studio plugin
  • Keep a local updated mirror of the repository, while not affecting your changes, without the need to commit
  • Monitor the source for certain events
  • Receive notifications of any kind (balloon popups, tray icons, email, sounds, ...) when certain events occur
link|flag
vote up 7 vote down

The CommitMonitor is quite good if I may say so :)

It doesn't have that many features because it's purpose is to monitor for commits and use as less memory as possible - I don't like tools that I have to keep running continuously and use a lot of memory.

link|flag
I upped this bcz I'm a commit monitor user. However, I finally tried svn-monitor this week, and it made me uninstall commit monitor in exactly 3 seconds. So I personally will not be recommending CM anymore because there's just no comparison - SM is superior. I urger everyone recommending/using CM to give SM a try. I was blown away. – Assaf Jun 15 at 4:42
vote up 3 vote down

Have you tried this question: Best SVN Tools

link|flag
Gracias on the cleanup – DoxaLogos Jun 12 at 16:44
vote up 1 vote down

have you tried this: http://svnbook.red-bean.com/en/1.4/svn.ref.reposhooks.post-commit.html ?

i think the sample script that comes with svn actually is a notifying script

link|flag
vote up 1 vote down

I use two tools:

  • a post-commit that I install in the hooks/ subdirectory of the Subversion repository. It uses the Subversion commit-email.pl program and emails me.

  • a custom program ran by cron which creates a syndication feed of the commits, for the people who prefer to use a feed reader.

My post-commit. Note that commits to the langtag directory are also emailed to a different address

REPOS="$1"
REV="$2"

# WARNING: for this script to work, commit-email.pl must use sendmail and not
# SMTP http://svn.haxx.se/users/archive-2007-05/0420.shtml

/usr/lib/subversion/hook-scripts/commit-email.pl "$REPOS" "$REV" -m 'langtag' -h langtag.net
 -s "[Svn langtag]" webmaster@langtag.net -m '.' -s "[Svn R&D]" bortzmeyer@nic.fr

The command to create the syndication feed (Atom format). Makefile format:

HEAD=$(shell svnversion ${ROOT} | sed -r -e 's/:[0-9]+M?$$//' -e 's/M$$//')
START=$(shell echo ${HEAD} - ${NUMBER} | bc)

feed-subversion.atom: 
       svn log --xml --verbose -r ${START}:HEAD ${ROOT} | \
                xsltproc --stringparam repository_name MyRepo \
                        --stringparam url https://svn.example.net/ \
                        --stringparam tag example.net,2009-04-29 \
                        --stringparam maintainer subversion@example.net \
                        --stringparam prefix 'https://viewvc.example.net/viewvc.cgi/?view=rev&root=MyRoot&revision=' \
                        --stringparam linktofiles https://viewvc.example.net/viewvc.cgi \
                        --stringparam endlinktofiles '?rev=REVISION_NUM&root=MyRoot∓view=markup' \
                        svnlog2atom.xsl - > $@

And you can get the svnlog2atom.xsl XSLT program (I believe it came originally from Norman Walsh).

link|flag
vote up 0 vote down

Could this be what you were using before? SVN notifier (svnnotifier.tigris.org)

link|flag
vote up 0 vote down

I haven't tried it yet, but SVN-Monitor might be useful. You will need ToirtoiseSVN client mentioned above to work with it.

link|flag

Your Answer

Get an OpenID
or

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