summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-10 03:48:40 -0500
committerJeff Carr <[email protected]>2025-10-10 03:48:40 -0500
commit0996047c5e8757c5fd034b1aa07156dd6471c292 (patch)
treec67c9a46a02d921b1baeb955b42194580346d382 /argv.go
parent8b3996d0b9c443269cfc7d146443431740e26381 (diff)
finally able to go down a perfect road
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/argv.go b/argv.go
index b2e89fb..290402a 100644
--- a/argv.go
+++ b/argv.go
@@ -54,9 +54,10 @@ type EmptyCmd struct {
type testCmd string
type ShowCmd struct {
- Dirty *EmptyCmd `arg:"subcommand:dirty" help:"show dirty git repos"`
- 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"`
+ Porcelain *EmptyCmd `arg:"subcommand:porcelain" help:"git status --porcelain"`
+ 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 {