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

18 lines
278 B
Go

package cmd
import (
"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) {
},
}
func init() {
rootCmd.AddCommand(merge_treeCmd)
}