diff options
author | vince <vincetiu8@gmail.com> | 2020-07-16 17:12:48 +0800 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-07-28 14:30:05 +0200 |
commit | 36f300cb35b203310e923cf956310c7f20ed7406 (patch) | |
tree | 5e11d662b8187309209d2fc246d1bc7bfff12048 /commands/root.go | |
parent | 0590de9f045c2090d72655a7c2e1d41be9b9104c (diff) | |
download | git-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.go | 1 |
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()) |