43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
This file is automatically generated using the cli-reference subcommand.
|
|
Use `cargo run -- cli-reference` to generate it.
|
|
|
|
// ANCHOR: install
|
|
$ hooked install --help
|
|
Install Hooked into ".git/hooks"
|
|
|
|
Usage: hooked install [OPTIONS]
|
|
|
|
Options:
|
|
--overwrite Overwrite existing files
|
|
-c, --config <CONFIG> Path to a Hooked configuration [default: Hooked.toml]
|
|
-h, --help Print help information
|
|
-V, --version Print version information
|
|
// ANCHOR_END: install
|
|
// ANCHOR: run
|
|
$ hooked run --help
|
|
Manually run hooks
|
|
|
|
Usage: hooked run [OPTIONS] <HOOK_TYPE>
|
|
|
|
Arguments:
|
|
<HOOK_TYPE> The hook type to run [possible values: pre-commit]
|
|
|
|
Options:
|
|
-c, --config <CONFIG> Path to a Hooked configuration [default: Hooked.toml]
|
|
-h, --help Print help information
|
|
-V, --version Print version information
|
|
// ANCHOR_END: run
|
|
// ANCHOR: uninstall
|
|
$ hooked uninstall --help
|
|
Remove installed hooks
|
|
|
|
Usage: hooked uninstall [OPTIONS]
|
|
|
|
Options:
|
|
--all Remove hooks not installed by Hooked
|
|
-c, --config <CONFIG> Path to a Hooked configuration [default: Hooked.toml]
|
|
-h, --help Print help information
|
|
-V, --version Print version information
|
|
// ANCHOR_END: uninstall
|
|
|