keyhog 0.5.73

GPU-accelerated secret scanner for code, Git history, cloud, containers, browser assets, and live credential verification
1
2
3
4
5
6
7
8
9
10
11
#[derive(clap::Subcommand, Debug, Clone)]
pub enum HookCommand {
    /// Install a git pre-commit hook in the current repository
    Install {
        /// Replace an existing non-KeyHog pre-commit hook.
        #[arg(long, default_value_t = false)]
        force: bool,
    },
    /// Remove the KeyHog pre-commit hook from the current repository
    Uninstall,
}