2022-05-10 11:07:07 +02:00

24 lines
508 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/rsteube/carapace-bin/pkg/actions/tools/git"
"github.com/spf13/cobra"
)
var bisect_resetCmd = &cobra.Command{
Use: "reset",
Short: "finish bisection search and go back to commit",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(bisect_resetCmd).Standalone()
bisectCmd.AddCommand(bisect_resetCmd)
carapace.Gen(bisect_resetCmd).PositionalCompletion(
git.ActionRefs(git.RefOption{}.Default()),
)
}