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

20 lines
640 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var multi_pack_indexCmd = &cobra.Command{
Use: "multi-pack-index",
Short: "Write and verify multi-pack-indexes",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
multi_pack_indexCmd.Flags().String("batch-size", "", "during repack, collect pack-files of smaller size into a batch that is larger than this size")
multi_pack_indexCmd.Flags().String("object-dir", "", "object directory containing set of packfile and pack-index pairs")
multi_pack_indexCmd.Flags().Bool("progress", false, "force progress reporting")
rootCmd.AddCommand(multi_pack_indexCmd)
}