I have this scenario with GIT:

I want to "do something" with a specific file when it is changed in a push. For example a .sql file must be dumped in a db if it's changed.

I'm using 'post-receive' hook in GIT with a statement like this:

DUMP=$(git diff-tree --name-only -r -z master dump.sql);

if [ -n "$DUMP" ]; then
  // using the new dump.sql
fi

How can I access to the new dump.sql just pushed from the hook?

link|improve this question

63% accept rate
feedback

1 Answer

up vote 4 down vote accepted

You can retrieve file dump.sql from revision $rev using:

git cat-file blob $rev:dump.sql

The post-receive hook is also called for things other than pushing master... hopefully you have a check somewhere that you're processing the updated master ref. As a matter of style, I'd use the new-revision value passed to the hook rather than referencing master directly from within the hook.

Usually I write a post-receive hook like this:

while read oldrev newrev refname; do
    if [ "$refname" = "refs/heads/master" ]; then
        # definitely updating master; $oldrev and $newrev encompass the changes
        if git diff-tree --name-only -r -z $oldrev $newrev dump.sql; then
            # dump.sql changed...
        fi
    fi
done

Importantly, this also copes with a single push sending over several commits to master in one go--- the command you showed in the question only looked at the last commit on master.

link|improve this answer
Thank you very much! is there a way to be sure that the referred "branch" updated is master instead of any other branch? – Randomize Nov 20 '11 at 13:10
1  
@Randomize The post-receive hook is passed some information on stdin... I'll illustrate by editing the answer, it'll be more readable – araqnid Nov 20 '11 at 13:24
WOW! thanks again! last question: googling I found docs about writing hooks too generic. Do you know any good site or book that explains properly how to write a hook, environment variables defined etc? – Randomize Nov 20 '11 at 13:41
1  
I don't know any documentation other than the githooks manpage, part of the standard reference documentation. To be honest, I've mostly learned about them from looking through examples-- post-receive and pre-receive are the most popular, since they're used as the equivalent of server-side triggers that other systems have. So examples like post-receive-email and various access-control pre-receive scripts are useful. – araqnid Nov 20 '11 at 13:50
feedback

Your Answer

 
or
required, but never shown

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