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

24 lines
901 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var hash_objectCmd = &cobra.Command{
Use: "hash-object",
Short: "Compute object ID and optionally creates a blob from a file",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
hash_objectCmd.Flags().Bool("literally", false, "just hash any random garbage to create corrupt objects for debugging Git")
hash_objectCmd.Flags().Bool("no-filters", false, "store file as is without filters")
hash_objectCmd.Flags().String("path", "", "process file as it were from this path")
hash_objectCmd.Flags().Bool("stdin-paths", false, "read file names from stdin")
hash_objectCmd.Flags().Bool("stdin", false, "read the object from stdin")
hash_objectCmd.Flags().StringP("t", "t", "", "object type")
hash_objectCmd.Flags().BoolP("w", "w", false, "write the object into the object database")
rootCmd.AddCommand(hash_objectCmd)
}