diff options
| author | Jeff Carr <[email protected]> | 2025-11-05 11:17:19 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-11-05 11:17:19 -0600 |
| commit | c75dfcd8496a6e61711e278194e59686e1e284a0 (patch) | |
| tree | 2bb66df988e6afd7af5cdd44bf1aadbb8f2c1347 /argv.go | |
| parent | 2feae4abfe2a8510321dcf1e10ae1c177c0cd141 (diff) | |
almost working stats.proto
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -65,16 +65,17 @@ type VerifyCmd struct { } type StatsCmd struct { - All bool `arg:"--all" help:"update all stats"` - CheckRefs bool `arg:"--check-refs" help:"load & check refs"` - CheckRemote bool `arg:"--check-remote" help:"load & check remote log"` - CheckRemoteRefs bool `arg:"--check-remote-refs" help:"load & check remote refs"` - UpdateRefs bool `arg:"--update" help:"update refs"` - UpdateRemote bool `arg:"--update-remote" help:"update remote log"` - UpdateRemoteRefs bool `arg:"--update-remote-refs" help:"update remote refs"` - Sizes bool `arg:"--sizes" help:"show sizes"` - List bool `arg:"--list" help:"list all stats"` - Repo string `arg:"--repo" help:"lookup this repo namespace"` + All *EmptyCmd `arg:"subcommand:all" help:"run on all the repos"` + Reload bool `arg:"--reload" help:"reload refs"` + CheckRefs bool `arg:"--check-refs" help:"load & check refs"` + CheckRemote bool `arg:"--check-remote" help:"load & check remote log"` + CheckRemoteRefs bool `arg:"--check-remote-refs" help:"load & check remote refs"` + UpdateRefs bool `arg:"--update-refs" help:"update refs"` + UpdateRemote bool `arg:"--update-remote" help:"update remote log"` + UpdateRemoteRefs bool `arg:"--update-remote-refs" help:"update remote refs"` + Sizes bool `arg:"--sizes" help:"show sizes"` + List bool `arg:"--list" help:"list all stats"` + Repo string `arg:"--repo" help:"lookup this repo namespace"` } func (ShowCmd) Examples() string { |
