public
Description: Git hook multiplexer.
Homepage:
Clone URL: git://github.com/metajack/multihook.git
name age message
file LICENSE.txt Loading commit data...
file README.markdown
file multihook.py
README.markdown

multihook

multihook allows multiplexing of Git hooks.

It is useful if you want to run multiple hooks on a single event. For example, you might use multihook on post-receive to send notifications by e-mail and by XMPP multi-user chat.

License

This code is copyright (c) 2008 by Jack Moffitt jack@metajack.im and is available under the GPLv3. See LICENSE.txt for details.

Usage

To use multihook, just copy multihook.py to your repository's .git/hooks dir and call it post-receive. Be sure to set it executable with chmod 755 post-receive as well.

You'll need to edit the very top of the file where HOOKS is defined. Each item of this array is a script to run. Each item is an array of strings; the first string is the script, and the other strings are its arguments.