carapace-bin/git_completer/cmd/bisect_generated.go
2020-04-20 22:58:56 +02:00

18 lines
281 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var bisectCmd = &cobra.Command{
Use: "bisect",
Short: "Use binary search to find the commit that introduced a bug",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(bisectCmd)
}