summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-07 19:10:37 -0600
committerJeff Carr <[email protected]>2025-02-07 19:10:37 -0600
commit1dd4a2d97966196dd1ed3a762bd501c0b3288d61 (patch)
treedc22e34c24b653aa183903b5117ee5f478a93cfc /argv.go
parent1d89d38bc3effde9c56a713ca3ce00302acc511e (diff)
minor fixesv0.22.72
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go13
1 files changed, 6 insertions, 7 deletions
diff --git a/argv.go b/argv.go
index 7b5f7fd..712a5c2 100644
--- a/argv.go
+++ b/argv.go
@@ -106,13 +106,12 @@ type DirtyCmd struct {
}
type FindCmd struct {
- Pub *EmptyCmd `arg:"subcommand:pub" help:"fix .config/forge/ and/or repos.pb protobuf file"`
- All bool `arg:"--all" help:"select every repo (the default)"`
- Mine bool `arg:"--mine" help:"your repos as defined in the forge config"`
- Favorites bool `arg:"--favorites" help:"your repos configured as favorites"`
- Private bool `arg:"--private" help:"your private repos from your .config/forge/"`
- Dirty bool `arg:"--dirty" help:"only use dirty git repos"`
- User bool `arg:"--user" help:"show repos on the user branch"`
+ All bool `arg:"--all" help:"select every repo (the default)"`
+ Mine bool `arg:"--mine" help:"your repos as defined in the forge config"`
+ Favorites bool `arg:"--favorites" help:"your repos configured as favorites"`
+ Private bool `arg:"--private" help:"your private repos from your .config/forge/"`
+ Dirty bool `arg:"--dirty" help:"only use dirty git repos"`
+ User bool `arg:"--user" help:"show repos on the user branch"`
// ReadOnly bool `arg:"--readonly" help:"include read-only repos"`
}