diff options
| author | Jeff Carr <[email protected]> | 2025-10-28 05:09:05 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-28 05:09:05 -0500 |
| commit | d0b5b0842064a38a05a8023734bd7105bb2ab90f (patch) | |
| tree | b06a7bd184a37b0a16bf60f8aa52972c71cbff13 /argv.go | |
| parent | b339658a81d79a4cfb00797d196d3aace08d2513 (diff) | |
cleaner argv options. argv/go-args help working again
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,6 @@ type args struct { Cache *CacheCmd `arg:"subcommand:cache" help:"chose the cache of repos to work with"` Clean *EmptyCmd `arg:"subcommand:clean" help:"'git clean' + reset repos to original state"` Commit *CommitCmd `arg:"subcommand:commit" help:"'git commit'"` - Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"` Config *ConfigCmd `arg:"subcommand:config" help:"show your .config/forge/ settings"` Merge *MergeCmd `arg:"subcommand:merge" help:"merge branches"` Normal *EmptyCmd `arg:"subcommand:normal" help:"shortcut to 'forge mode normal'"` @@ -32,6 +31,7 @@ type args struct { Force bool `arg:"--force" help:"try to strong-arm things"` Verbose bool `arg:"--verbose" help:"show more output than usual"` Fix bool `arg:"--fix" help:"try to make repairs"` + // Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"` } type EmptyCmd struct { |
