Git Hooks - BKJackson/BKJackson_Wiki GitHub Wiki

Git Hooks

What are Git hooks?
Git hooks are scripts that Git executes before or after events such as: commit, push, and receive. Git hooks are a built-in feature - no need to download anything. Git hooks are run locally.
githooks.com - the missing manual
Autohook - Autohook is a very, very small Git hook manager with focus on automation.
overcommit - a tool to manage and configure Git hooks.

--no-verify

If you supply the --no-verify argument to the git command then the command will still be executed even if one (or more) of the hooks failed (i.e. returned a non-zero status code). Please do this only if you know what you are doing. Source