diff options
| author | Jeff Carr <[email protected]> | 2025-10-08 01:23:12 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-08 01:23:12 -0500 |
| commit | 1f321bc8c3b7bb19f443d73334c6cdcc45a9c75a (patch) | |
| tree | 02e3b3d4209dc735d85ed04040a8af1cbf135aac /argv.go | |
| parent | febcf44d5386f8fc20ab752f0416955f35375335 (diff) | |
usability cleanups
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -81,11 +81,12 @@ type DefaultCmd struct { } type GitCmd struct { - Log *EmptyCmd `arg:"subcommand:log" help:"git log"` - Who *EmptyCmd `arg:"subcommand:who" help:"git who"` - Tag *EmptyCmd `arg:"subcommand:tag" help:"show tags"` - Pull *EmptyCmd `arg:"subcommand:pull" help:"pull the wit standard paths"` - Push *EmptyCmd `arg:"subcommand:push" help:"push the wit standard paths"` + Log *EmptyCmd `arg:"subcommand:log" help:"git log"` + Who *EmptyCmd `arg:"subcommand:who" help:"git who"` + Tag *EmptyCmd `arg:"subcommand:tag" help:"show tags"` + Pull *EmptyCmd `arg:"subcommand:pull" help:"pull the wit standard paths"` + Push *EmptyCmd `arg:"subcommand:push" help:"push the wit standard paths"` + DeleteUntracked bool `arg:"--delete-untracked" help:"delete the untracked files"` } type EmptyCmd struct { |
