carapace-bin/completers/git_completer/cmd/sparseCheckout_reapply.go
2022-07-10 15:52:06 +02:00

19 lines
396 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var sparseCheckout_reapplyCmd = &cobra.Command{
Use: "reapply",
Short: "Reapply the existing sparse directory specifications",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(sparseCheckout_reapplyCmd).Standalone()
sparseCheckoutCmd.AddCommand(sparseCheckout_reapplyCmd)
}