summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go12
1 files changed, 8 insertions, 4 deletions
diff --git a/argv.go b/argv.go
index ec55a81..d9a660d 100644
--- a/argv.go
+++ b/argv.go
@@ -41,7 +41,7 @@ type ShowCmd struct {
Dirty *EmptyCmd `arg:"subcommand:dirty" help:"show dirty git repos"`
Mtime *EmptyCmd `arg:"subcommand:mtime" help:"show mtime changes"`
ENV *EmptyCmd `arg:"subcommand:ENV" help:"show lib/env"`
- Tag *TagCmd `arg:"subcommand:tag" help:"show the git tag table"`
+ Tag *TagCmd `arg:"subcommand:refs" help:"show git refs"`
Repos *RepoCmd `arg:"subcommand:repos" help:"show repos by type. deprecate."`
Repo string `arg:"--repo" help:"lookup this repo namespace"`
// MasterDefault *EmptyCmd `arg:"subcommand:masterdefault" help:"run the default behavior for master branches"`
@@ -66,9 +66,13 @@ type VerifyCmd struct {
}
type StatsCmd struct {
- All bool `arg:"--all" help:"process all stats"`
- Sizes bool `arg:"--sizes" help:"show sizes"`
- List bool `arg:"--list" help:"list all stats"`
+ All bool `arg:"--all" help:"update all stats"`
+ CheckRefs bool `arg:"--check-refs" help:"load & check refs"`
+ CheckRemote bool `arg:"--check-refs-remote" help:"load & check remote refs"`
+ UpdateRefs bool `arg:"--update" help:"update refs"`
+ UpdateRemote bool `arg:"--update-remote" help:"update remote refs"`
+ Sizes bool `arg:"--sizes" help:"show sizes"`
+ List bool `arg:"--list" help:"list all stats"`
}
func (ShowCmd) Examples() string {