diff options
| author | Jeff Carr <[email protected]> | 2025-10-10 08:57:09 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-10 08:57:09 -0500 |
| commit | a5f34181c935af5a98353f34e137b9bfe562d121 (patch) | |
| tree | 2513ad0591312711616473267ff1e2f27eb0cd76 /argv.go | |
| parent | 85d29ad6835b83f5bd52eb6be316569aeefae71b (diff) | |
debug default behavior
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -54,10 +54,11 @@ type EmptyCmd struct { type testCmd string type ShowCmd struct { - Dirty *EmptyCmd `arg:"subcommand:dirty" help:"show dirty git repos"` - Mtime *EmptyCmd `arg:"subcommand:mtime" help:"show mtime changes"` - Repo *RepoCmd `arg:"subcommand:repos" help:"print a table of the current repos"` - Tag *TagCmd `arg:"subcommand:tag" help:"show git tags"` + Dirty *EmptyCmd `arg:"subcommand:dirty" help:"show dirty git repos"` + DirtySave *EmptyCmd `arg:"subcommand:dirtysave" help:"check dirty then save"` + Mtime *EmptyCmd `arg:"subcommand:mtime" help:"show mtime changes"` + Repo *RepoCmd `arg:"subcommand:repos" help:"print a table of the current repos"` + Tag *TagCmd `arg:"subcommand:tag" help:"show git tags"` } type FixCmd struct { |
