diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-26 16:49:00 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-26 16:49:00 +0200 |
commit | 04ddeef90f8dfb541e1b87ace1cb817679a488df (patch) | |
tree | 1a5929b845b796866c8637ae776b9d8dffc0ecb5 /commands | |
parent | 18f5c1632f51b7f7172441651b13ac267b421df2 (diff) | |
download | git-bug-04ddeef90f8dfb541e1b87ace1cb817679a488df.tar.gz |
commands: add a "deselect" command to deselect a previously selected bug
Diffstat (limited to 'commands')
-rw-r--r-- | commands/deselect.go | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/commands/deselect.go b/commands/deselect.go new file mode 100644 index 00000000..f2907c70 --- /dev/null +++ b/commands/deselect.go @@ -0,0 +1,38 @@ +package commands + +import ( + "github.com/MichaelMure/git-bug/cache" + "github.com/MichaelMure/git-bug/commands/select" + "github.com/spf13/cobra" +) + +func runDeselect(cmd *cobra.Command, args []string) error { + backend, err := cache.NewRepoCache(repo) + if err != nil { + return err + } + defer backend.Close() + + err = _select.Clear(backend) + if err != nil { + return err + } + + return nil +} + +var deselectCmd = &cobra.Command{ + Use: "deselect", + Short: "Clear the implicitly selected bug", + Example: `git bug select 2f15 +git bug comment +git bug status +git bug deselect +`, + RunE: runDeselect, +} + +func init() { + RootCmd.AddCommand(deselectCmd) + deselectCmd.Flags().SortFlags = false +} |