views:

61

answers:

2

Do you know any good repo monitoring solution?

I'd like to get information when someone pushes to remote repo (preferably via taskbar tray icon: "someuser pushed…").

Other solutions I consider:

  • recieve hook
  • periodically git log via cron
  • check for updates on running every git command

(my system of choice is Ubuntu)

+1  A: 

I found this git-commit-notifier which sends nice looking emails for each push.

Since it sends mail, you need an SMTP server. If you dont have one yourself you can use Gmails. I assume you already have an email address and some nifty tray program to display incoming emails.

Havent tried it myself but as far as push notifications go, it seems to do what you want.

mizipzor
+1  A: 

If pushing (through a git hook) is not convenient, then a polling system is easy to setup:

A simple Hudson job could poll your Git repo for new information and send an email or do any other task of your choice.
It has various tray tracker like this one.

Or a code browsing tool like FishEye can equally poll for new data and present them in a nice web interface.

Both tools are built to talk to Git repositories (as well as other: SVN, ClearCase, ...)

VonC
I think the best way would be to use the hooks and then just push the info off somewhere. Options where or what that somewhere is is pretty much are pretty much limitless from here on.
Killer_X