From 57b999ad8ff174d756f49b5e763c588db91fcc1c Mon Sep 17 00:00:00 2001 From: Justin Wernick Date: Sun, 10 Sep 2023 21:45:52 +0200 Subject: Hide the commands which aren't called interactively in the help text --- src/parser.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/parser.rs b/src/parser.rs index 5806cec..27feaf6 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -23,8 +23,10 @@ pub enum ShackleCommand { /// Quit the shell Exit, /// Server side command required to git fetch from the server + #[command(hide = true)] GitUploadPack(GitUploadPackArgs), /// Server side command required by git push to the server + #[command(hide = true)] GitReceivePack(GitReceivePackArgs), } -- cgit v1.2.3