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

20 lines
485 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var mktreeCmd = &cobra.Command{
Use: "mktree",
Short: "Build a tree-object from ls-tree formatted text",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
mktreeCmd.Flags().Bool("batch", false, "allow creation of more than one tree")
mktreeCmd.Flags().Bool("missing", false, "allow missing objects")
mktreeCmd.Flags().BoolP("z", "z", false, "input is NUL terminated")
rootCmd.AddCommand(mktreeCmd)
}