summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-08 01:23:12 -0500
committerJeff Carr <[email protected]>2025-10-08 01:23:12 -0500
commit1f321bc8c3b7bb19f443d73334c6cdcc45a9c75a (patch)
tree02e3b3d4209dc735d85ed04040a8af1cbf135aac /argv.go
parentfebcf44d5386f8fc20ab752f0416955f35375335 (diff)
usability cleanups
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go11
1 files changed, 6 insertions, 5 deletions
diff --git a/argv.go b/argv.go
index b6073f1..014cbf4 100644
--- a/argv.go
+++ b/argv.go
@@ -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 {