don't
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(cred): hide 'git-credential' command

'git-credential' is not supposed to be invoked directly by the user so
there is no reason to show it in help.

Signed-off-by: tjh <x@tjh.dev>

tjh 27769446 c2e6f201

+3 -1
+3 -1
crates/gordian-cred/src/main.rs
··· 17 17 #[derive(Subcommand)] 18 18 enum Command { 19 19 Auth(Auth), 20 + #[command(hide = true)] 20 21 GitCredential(GitCredential), 21 - Install(Install), 22 22 Generate(Generate), 23 + Install(Install), 23 24 } 24 25 25 26 #[derive(Debug)] ··· 46 45 Self::Install(sc) => sc.run().or_raise(err)?, 47 46 Self::Generate(generate) => generate.run().unwrap(), 48 47 } 48 + 49 49 Ok(()) 50 50 } 51 51 }