vote up 1 vote down star

Hi Guys,

I am trying to find a Git Commit Monitor for Windows. Does anyone know whether one exists or ?

Ideally it would essentially monitor the log and notify when a new commit has occurred ?

Thx

flag
Where is the repository that you are trying to monitor? On some remote site? How do you want to be notified? By Email? – Manni Oct 31 at 12:39
hi - yeah on a remote site. its a remote repository on a windows box - cant figure out how it can notify me ? – Tom Oct 31 at 12:47
I am using TortiseGIT and was hoping for a simple way to get update notifications .... a fair few commits per day? – Tom Oct 31 at 12:52

2 Answers

vote up 3 vote down check

Just use the GIT hook post-commit

githooks(5) Manual Page

link|flag
Hi :) Not sure what you mean ? – Tom Oct 31 at 12:46
Umm did you read the page in the link provided? – jitter Oct 31 at 12:55
hi yeah i did - but little unsure how to use it ? its command line only or ? – Tom Oct 31 at 12:58
@jitter, even if he did, you'll have to wade through some jargon to know what it all means. I had to try several times before I could get the pre-commit hook to run a script I wanted... but that could be me offcourse. – Lieven Oct 31 at 13:05
@Tom, yes, it's command line. I started with TortoiseGit also but find myself using the Git Bash command line more and more. If you want all the bells and whistles, that is the only way. As a sidenote, once you get the gist of it, you don't want to go back for your day to day git activities. – Lieven Oct 31 at 13:08
show 2 more comments
vote up 1 vote down

The best would be to use the post-receive hook.

On your repository on the server, you have to put a shell script named 'post-receive' in the .git/hooks directory. This script will be invoked each time something is pushed and it's passed argument via stdin in the form

There are examples scripts provided with recent version of git. Look in:

/usr/share/doc/git-core/contrib/hooks/post-receive-email

On windows, look at the path of your install to find 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.