aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bug/bug_deselect.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bug/bug_deselect.go')
-rw-r--r--commands/bug/bug_deselect.go37
1 files changed, 37 insertions, 0 deletions
diff --git a/commands/bug/bug_deselect.go b/commands/bug/bug_deselect.go
new file mode 100644
index 00000000..7e2a86c9
--- /dev/null
+++ b/commands/bug/bug_deselect.go
@@ -0,0 +1,37 @@
+package bugcmd
+
+import (
+ "github.com/spf13/cobra"
+
+ "github.com/MichaelMure/git-bug/commands/bug/select"
+ "github.com/MichaelMure/git-bug/commands/execenv"
+)
+
+func newBugDeselectCommand() *cobra.Command {
+ env := execenv.NewEnv()
+
+ cmd := &cobra.Command{
+ Use: "deselect",
+ Short: "Clear the implicitly selected bug",
+ Example: `git bug select 2f15
+git bug comment
+git bug status
+git bug deselect
+`,
+ PreRunE: execenv.LoadBackend(env),
+ RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error {
+ return runBugDeselect(env)
+ }),
+ }
+
+ return cmd
+}
+
+func runBugDeselect(env *execenv.Env) error {
+ err := _select.Clear(env.Backend)
+ if err != nil {
+ return err
+ }
+
+ return nil
+}