summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/argv.go b/argv.go
index 88f3614..9904e52 100644
--- a/argv.go
+++ b/argv.go
@@ -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 {