carapace-bin/completers/git_completer/cmd/commit_graph_generated.go
2023-04-12 09:09:14 +02:00

20 lines
496 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var commit_graphCmd = &cobra.Command{
Use: "commit-graph",
Short: "Write and verify Git commit-graph files",
Run: func(cmd *cobra.Command, args []string) {},
GroupID: groups[group_low_level_manipulator].ID,
}
func init() {
carapace.Gen(commit_graphCmd).Standalone()
commit_graphCmd.Flags().String("object-dir", "", "The object directory to store the graph")
rootCmd.AddCommand(commit_graphCmd)
}