# Hooky Git hooks helper made in Rust # Warning Crate was renamed from `hooky-cli` to `hooky-rs` to avoid library and binary name conflict. If you have `hooky-cli` installed, please uninstall it and install `hooky-rs` instead. ## Features - [x] Zero dependencies - [x] Easy to use - [x] Fast - [x] Cross-platform # Installation ```bash cargo install hooky-rs ``` # Usage ## Initialize To initialize the hooks, run the following command: ```bash hooky init ``` This will create a `.hooky` directory in the root of your project, where the hooks will be stored. Also automatically adds `pre-commit` and hooks, but you can disable this by passing the `--no-pre-commit` flag. ## Add a hook To add a hook, run the following command: ```bash hooky add ``` ## Uninstall Hooky To uninstall Hooky, run the following command: ```bash hooky uninstall ```