This hack
sub-directory holds
git commit hooks
you may use when working on openshift-ansible contributions. See the
README in each sub-directory for an overview of what each hook does
and if the hook has any specific usage or setup instructions.
Basic git hook usage is simple:
1) Copy (or symbolic link) the hook to the $REPO_ROOT/.git/hooks/
directory
2) Make the hook executable (chmod +x $PATH_TO_HOOK
)
If you want to install multiple hooks of the same type, for example:
multiple pre-commit
hooks, you will need some kind of hook
dispatcher. For an example of an easy to use hook dispatcher check
out this gist by carlos-jenkins:
If you want to contribute a new hook there are only a few criteria that must be met:
pre-commit
)