docs: add Long description to cache main command

Signed-off-by: Syed Mohammed Sylani <sylanmohammed@gmail.com>
This commit is contained in:
Syed Mohammed Sylani 2025-07-22 12:49:59 +05:30 committed by Pat Zielinski
parent 373138c4f6
commit 1cab1b8ada
2 changed files with 5 additions and 0 deletions

View file

@ -2,6 +2,10 @@
Manage gittuf's caching functionality
### Synopsis
The 'cache' command group contains subcommands to manage gittuf's local persistent cache. This cache helps improve performance by storing metadata locally. The cache is local-only and is not synchronized with remote repositories.
### Options
```

View file

@ -13,6 +13,7 @@ func New() *cobra.Command {
cmd := &cobra.Command{
Use: "cache",
Short: "Manage gittuf's caching functionality",
Long: `The 'cache' command group contains subcommands to manage gittuf's local persistent cache. This cache helps improve performance by storing metadata locally. The cache is local-only and is not synchronized with remote repositories.`,
DisableAutoGenTag: true,
}