diff options
author | Michael Muré <batolettre@gmail.com> | 2020-11-22 22:15:51 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2024-11-03 00:51:41 +0100 |
commit | dbb9526b247f1d197ec9a524e34f6ca4c25cdd4a (patch) | |
tree | e5e4d4bbddf2d76029e3f42567cc8b500a3af0ad /commands/root.go | |
parent | fb705bb8f4ab7e44900520e018518d12885e0eca (diff) | |
download | git-bug-dbb9526b247f1d197ec9a524e34f6ca4c25cdd4a.tar.gz |
commands: add a command to export bugs as raw operations (NDJSON)
Diffstat (limited to 'commands/root.go')
-rw-r--r-- | commands/root.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/commands/root.go b/commands/root.go index e966751c..3cda27b5 100644 --- a/commands/root.go +++ b/commands/root.go @@ -79,6 +79,20 @@ the same git remote you are already using to collaborate with other people. cmd.AddCommand(newVersionCommand(env)) cmd.AddCommand(newWipeCommand(env)) + // Added with export NDJSON + cmd.AddCommand(newAddCommand(env)) + cmd.AddCommand(newCommentCommand(env)) + 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)) + return cmd } |