-1

I want to update the commit details to my server automatically after git commit in eclipse How to do it ?

SHASHIDHAR MANCHUKONDA
  • 3,302
  • 2
  • 19
  • 40

1 Answers1

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