Reputation: 2663
What software can be used to get real time notifications when others commit changes to SVN or Source Control?
Upvotes: 3
Views: 3641
Reputation: 168
There is android svn notifier too https://play.google.com/store/apps/details?id=com.lilkillaware.svncheckes
Upvotes: 0
Reputation: 2752
If you're using a hosted SVN system like Beanstalk, you could subscribe to the RSS feed and then use your RSS notifier of choice. On Mac, software like NetNewsWire and RSS Growler (which sadly seems to not work currently) can notify you via Growl.
Upvotes: 1
Reputation: 10082
I've also used SVN Notifier (for Windows) in the past and can recommend it - nice and lightweight.
Upvotes: 3
Reputation: 12010
Using svn, your best bet would be a post-commit hook. These are simple bash scripts that are ran after a commit is made.
http://svnbook.red-bean.com/en/1.1/ch05s02.html
Upvotes: 2