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

19 lines
420 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var prune_packedCmd = &cobra.Command{
Use: "prune-packed",
Short: "Remove extra objects that are already in pack files",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
prune_packedCmd.Flags().BoolP("dry-run", "n", false, "dry run")
prune_packedCmd.Flags().BoolP("quiet", "q", false, "be quiet")
rootCmd.AddCommand(prune_packedCmd)
}