when I push something to my GIT repository, the post-receive hook is triggered and executes some scripts. Is it possible doing something before the execution these scripts if (and only if) a specific file is changed respect to the previous push (for example .sql file)?

Thanks

Randomize

link|improve this question

63% accept rate
feedback

1 Answer

up vote 1 down vote accepted

In the same post-receive hook as a first step or in a pre-receive or update hook, you can use

git diff-tree --name-status -rz

and pass in the new and old ref that are passed in to the hook ( either stdin or arguments) and get the files, check for modified - M - status in the output and do what you need.

Also see here for alternate ways: http://progit.org/book/ch7-4.html

link|improve this answer
thanks! I was looking exactly for that! – Randomize Nov 20 '11 at 11:16
sorry forgot: how can I get the changed file (in this case the sql file) to execute it? – Randomize Nov 20 '11 at 11:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.