diff options
| author | Jeff Carr <[email protected]> | 2025-10-10 17:42:55 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-10 17:42:55 -0500 |
| commit | 501f27c316e053b004765863b51aada48513ba44 (patch) | |
| tree | 66781e6ce628b79b192dcea54debfef291a5bf10 /argv.go | |
| parent | 1dc89c5ee56624048f985f9794a63016016afb75 (diff) | |
lots of patch cleanups. tool is early stage functional
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 { |
