summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
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 {