I want to update the commit details to my server automatically after git commit in eclipse How to do it ?
Asked
Active
Viewed 66 times
-1
-
After `commit` or after `push`? – merlin2011 Jun 21 '14 at 02:44
-
After commit and push any thing would be helpful – SHASHIDHAR MANCHUKONDA Jun 21 '14 at 02:45
1 Answers
2
This question is really independent of Eclipse. The mechanism is the same whether you are doing git commit
using Eclipse, Netbeans, or on the command line.
You need to install a commit hook, either client side or server side depending on whether you want it after commit
or push
. Inside the hook script, you can do whatever you want, including talking to a web service and telling it about commit details.

merlin2011
- 71,677
- 44
- 195
- 329