summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/parser.rs2
1 files changed, 2 insertions, 0 deletions
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),
}