summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-25 01:49:00 -0500
committerJeff Carr <[email protected]>2025-09-25 01:49:00 -0500
commitb2c434bf29f6cefc439814a41b5ca4642291a169 (patch)
tree25f141b4a47002f85a8251a7b111620d239aeb9f
parent4b7669ef7bda1544642d0c4e4f1995da3ae226fe (diff)
fix --all default
-rw-r--r--argv.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/argv.go b/argv.go
index 10c58fe..2fb7330 100644
--- a/argv.go
+++ b/argv.go
@@ -61,8 +61,8 @@ type NormalCmd struct {
}
type CommitCmd struct {
- Submit bool `arg:"--submit" default:"true" help:"submit the patches to forge"`
- All bool `arg:"--all" default:"true" help:"git commit in all dirty repos"`
+ // Submit bool `arg:"--submit" help:"submit the patches to forge"`
+ All bool `arg:"--all" help:"git commit in all dirty repos"`
}
type testCmd string
@@ -126,9 +126,9 @@ type ConfigCmd struct {
type ConfigAddCmd struct {
Path string `arg:"--path" help:"absolute path of the git repo"`
GoPath string `arg:"--gopath" help:"GO path of the git repo"`
- Directory bool `arg:"--directory" default:"false" help:"repo is a directory to match against"`
- ReadOnly bool `arg:"--readonly" default:"false" help:"repo is readonly"`
- Writable bool `arg:"--writable" default:"false" help:"repo is writable"`
+ Directory bool `arg:"--directory" help:"repo is a directory to match against"`
+ ReadOnly bool `arg:"--readonly" help:"repo is readonly"`
+ Writable bool `arg:"--writable" help:"repo is writable"`
Favorite bool `arg:"--favorite" default:"false" help:"forge will always go-clone or git clone this"`
Private bool `arg:"--private" default:"false" help:"repo can not be published"`
Interesting bool `arg:"--interesting" default:"false" help:"something you decided was cool"`