aboutsummaryrefslogtreecommitdiffstats
path: root/commands/root.go
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2024-11-03 19:30:21 +0100
committerMatěj Cepl <mcepl@cepl.eu>2024-11-03 19:37:53 +0100
commit1793138a1b943e71a180dc6aa360b4599f97ebdd (patch)
tree3134a8f76342ba2262e4909e650e8192f270efea /commands/root.go
parent0f629c91e14aebd675c22602d93e60860158d842 (diff)
downloadgit-bug-bug-export.tar.gz
fix[WIP]: more updatesbug-export
Diffstat (limited to 'commands/root.go')
-rw-r--r--commands/root.go22
1 files changed, 11 insertions, 11 deletions
diff --git a/commands/root.go b/commands/root.go
index 3cda27b5..6712da29 100644
--- a/commands/root.go
+++ b/commands/root.go
@@ -80,18 +80,18 @@ the same git remote you are already using to collaborate with other people.
cmd.AddCommand(newWipeCommand(env))
// Added with export NDJSON
- cmd.AddCommand(newAddCommand(env))
- cmd.AddCommand(newCommentCommand(env))
- cmd.AddCommand(newDeselectCommand(env))
+ // undefined cmd.AddCommand(newAddCommand(env))
+ // undefined cmd.AddCommand(newCommentCommand(env))
+ // undefined cmd.AddCommand(newDeselectCommand(env))
cmd.AddCommand(newExportCommand(env))
- cmd.AddCommand(newLsCommand(env))
- cmd.AddCommand(newLsIdCommand(env))
- cmd.AddCommand(newLsLabelCommand(env))
- cmd.AddCommand(newRmCommand(env))
- cmd.AddCommand(newSelectCommand(env))
- cmd.AddCommand(newShowCommand(env))
- cmd.AddCommand(newStatusCommand(env))
- cmd.AddCommand(newTitleCommand(env))
+ // undefined cmd.AddCommand(newLsCommand(env))
+ // undefined cmd.AddCommand(newLsIdCommand(env))
+ // undefined cmd.AddCommand(newLsLabelCommand(env))
+ // undefined cmd.AddCommand(newRmCommand(env))
+ // undefined cmd.AddCommand(newSelectCommand(env))
+ // undefined cmd.AddCommand(newShowCommand(env))
+ // undefined cmd.AddCommand(newStatusCommand(env))
+ // undefined cmd.AddCommand(newTitleCommand(env))
return cmd
}