diff options
| author | Jeff Carr <[email protected]> | 2025-01-30 17:59:47 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-30 17:59:47 -0600 |
| commit | 3db2e7ff6c70a06fc24a49b074dbaf33444c3757 (patch) | |
| tree | aecdc282fe46417dc1d3a12a0133e0bff463ce2f /argv.go | |
| parent | 4d4aad27e433ca0658379c4cd1f50c26cfdc33dd (diff) | |
rethink the patch options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -13,7 +13,7 @@ var argv args type args struct { Checkout *CheckoutCmd `arg:"subcommand:checkout" help:"switch branches using 'git checkout'"` - Clean *CleanCmd `arg:"subcommand:clean" help:"clean git branches"` + Clean *CleanCmd `arg:"subcommand:clean" help:"start over at the beginning"` Commit *EmptyCmd `arg:"subcommand:commit" help:"'git commit' but errors out if on wrong branch"` Config *ConfigCmd `arg:"subcommand:config" help:"show your .config/forge/ settings"` Dirty *DirtyCmd `arg:"subcommand:dirty" help:"show repos git says are dirty"` @@ -64,9 +64,10 @@ type CleanDevelCmd struct { } type PatchCmd struct { - List *EmptyCmd `arg:"subcommand:list" help:"list available patches"` - Show *EmptyCmd `arg:"subcommand:show" help:"show a specific patch"` - Submit string `arg:"--submit" help:"submit a new patchset with name"` + List *EmptyCmd `arg:"subcommand:list" help:"your downloaded patchsets"` + Get *EmptyCmd `arg:"subcommand:get" help:"get the new patchsets"` + Show *EmptyCmd `arg:"subcommand:show" help:"your pending commits to your code"` + Submit string `arg:"--submit" help:"submit your commits"` } type ConfigAddCmd struct { |
