summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/argv.go b/argv.go
index 90e1b3a..e1a1663 100644
--- a/argv.go
+++ b/argv.go
@@ -107,9 +107,10 @@ type CleanDevelCmd struct {
}
type PatchCmd struct {
- Get *EmptyCmd `arg:"subcommand:get" help:"get the new patchsets"`
- Fix bool `arg:"--fix" help:"actually apply your patches"`
- Submit bool `arg:"--resubmit" help:"resubmit your git commits"`
+ Get bool `arg:"--get" help:"get the new patchsets"`
+ Show bool `arg:"--show" help:"show all the current patches"`
+ Fix bool `arg:"--fix" help:"attempt to apply any new patches"`
+ Submit bool `arg:"--resubmit" help:"resubmit your git commits"`
}
type PullCmd struct {