mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
42 lines
790 B
Go
42 lines
790 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/MichaelMure/git-bug/cache"
|
|
"github.com/MichaelMure/git-bug/commands/select"
|
|
"github.com/MichaelMure/git-bug/util/interrupt"
|
|
"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()
|
|
interrupt.RegisterCleaner(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
|
|
`,
|
|
PreRunE: loadRepo,
|
|
RunE: runDeselect,
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(deselectCmd)
|
|
deselectCmd.Flags().SortFlags = false
|
|
}
|