I've looked at the githooks manpage but unless I'm missing something I don't see an option for local, post-push git hooks. I'd like to have one that updates the api docs on my web server (for which I already have a script) after I push the master branch to the GitHub repo. Of course I could just write my own script that combines the git push and the api docs run, but that feels somewhat inelegant.
|
This type of hook is not supported by Git. It falls outside the valid reasons for a Git hook as given by Git's maintainer. The introductory remark in the above linked message speaks almost directly to your case:
P.S. A “Single Push” Hint
An extra |
|||||
|
|
Another solution to this problem is to have a wrapper for
Saved as |
|||
|
|
|
I recently came across the same issue. I wanted a hook so that a push from my git submodule would commit the new submodule reference in the 'superproject'. As Chris mentioned, the best way is to just use a git alias, like this:
This adds the following to your .git/config file:
And so now, if you type:
your changes will be pushed, and then update-server.sh will be executed. |
|||||||
|