From 36f300cb35b203310e923cf956310c7f20ed7406 Mon Sep 17 00:00:00 2001 From: vince Date: Thu, 16 Jul 2020 17:12:48 +0800 Subject: Add the 'rm' command This commit adds a command that removes a bug from the repository, given a prefix. --- commands/root.go | 1 + 1 file changed, 1 insertion(+) (limited to 'commands/root.go') 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()) -- cgit