-
Notifications
You must be signed in to change notification settings - Fork 2
Git Hooks
BK Jackson edited this page May 16, 2019
·
3 revisions
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.
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