carapace-bin/completers/git_completer/cmd/merge_tree_generated.go
2023-04-12 09:09:14 +02:00

20 lines
391 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var merge_treeCmd = &cobra.Command{
Use: "merge-tree",
Short: "Show three-way merge without touching index",
Run: func(cmd *cobra.Command, args []string) {},
GroupID: groups[group_interrogator].ID,
}
func init() {
carapace.Gen(merge_treeCmd).Standalone()
rootCmd.AddCommand(merge_treeCmd)
}