aboutsummaryrefslogtreecommitdiffstats
path: root/commands/root.go
diff options
context:
space:
mode:
authorvince <vincetiu8@gmail.com>2020-07-16 17:12:48 +0800
committerMichael Muré <batolettre@gmail.com>2020-07-28 14:30:05 +0200
commit36f300cb35b203310e923cf956310c7f20ed7406 (patch)
tree5e11d662b8187309209d2fc246d1bc7bfff12048 /commands/root.go
parent0590de9f045c2090d72655a7c2e1d41be9b9104c (diff)
downloadgit-bug-36f300cb35b203310e923cf956310c7f20ed7406.tar.gz
Add the 'rm' command
This commit adds a command that removes a bug from the repository, given a prefix.
Diffstat (limited to 'commands/root.go')
-rw-r--r--commands/root.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/root.go b/commands/root.go
index a67fec1a..e7848363 100644
--- a/commands/root.go
+++ b/commands/root.go
@@ -71,6 +71,7 @@ _git_bug() {
cmd.AddCommand(newLsLabelCommand())
cmd.AddCommand(newPullCommand())
cmd.AddCommand(newPushCommand())
+ cmd.AddCommand(newRmCommand())
cmd.AddCommand(newSelectCommand())
cmd.AddCommand(newShowCommand())
cmd.AddCommand(newStatusCommand())