diff options
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 { |
