How To
Add hooks
Adding hooks is very simple. Just use the add cmd.
bash
hooky add pre-commit "echo 'hello world\!'"Uninstall all hooks
Uninstalling hooks is very simple. Just use the uninstall cmd.
bash
hooky uninstallIgnore perticular hooks
Ignoring a perticular hook which you don't want to run can be achived with ignore cmd.
bash
hooky ignore pre-commitYou can unignore a hook as well using the unignore cmd.
bash
hooky unignore pre-commitShow hooks
When the project grows too big a lot of hooks might be getting utilized. To see what all hooks are present use the show cmd.
bash
hooky showWhen you want to see the content of a hook just use the show cmd with the specific hook.
bash
hooky show <hook-name>