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

18 lines
297 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var diff_treeCmd = &cobra.Command{
Use: "diff-tree",
Short: "Compares the content and mode of blobs found via two tree objects",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(diff_treeCmd)
}