summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-28 21:15:24 -0600
committerJeff Carr <[email protected]>2025-01-29 12:18:16 -0600
commiteee88af0ce0afd82046985572d2bea0090c7e087 (patch)
tree95a1955604a9609f1c67e503ea43d21700d2dc25 /argv.go
parentbb7937bb792919e37a1bd94acd8a54f5824f7a50 (diff)
general usefulness
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 57058e9..72e49ff 100644
--- a/argv.go
+++ b/argv.go
@@ -100,13 +100,12 @@ type DirtyCmd struct {
}
type FindCmd struct {
- Patches *EmptyCmd `arg:"subcommand:patches" help:"show repos that have patches"`
- 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"`
}