summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-04 09:15:32 -0500
committerJeff Carr <[email protected]>2025-09-04 09:15:32 -0500
commit5fec66f97cce98793c657e4183b7ade280f5c7f8 (patch)
tree70ea0530c41885bae1b867c8352c9007554b5197 /argv.go
parent680069d4ca65c75ce1d7d462d98ce7e9e4c8bfdc (diff)
lots more code cleanups
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/argv.go b/argv.go
index a50a197..7d92c80 100644
--- a/argv.go
+++ b/argv.go
@@ -19,7 +19,7 @@ type args struct {
Clean *CleanCmd `arg:"subcommand:clean" help:"start over at the beginning"`
Commit *CommitCmd `arg:"subcommand:commit" help:"'git commit' but errors out if on wrong branch"`
Config *ConfigCmd `arg:"subcommand:config" help:"show your .config/forge/ settings"`
- Debug *DebugCmd `arg:"subcommand:debug" help:"debug forge"`
+ Debug *EmptyCmd `arg:"subcommand:debug" help:"debug forge"`
Dirty *DirtyCmd `arg:"subcommand:dirty" help:"show dirty git repos"`
GitFetch *FindCmd `arg:"subcommand:fetch" help:"run 'git fetch master'"`
List *FindCmd `arg:"subcommand:list" help:"print a table of the current repos"`
@@ -102,10 +102,6 @@ type ConfigCmd struct {
Register string `arg:"--register" help:"register your git URL (foo.com/mystuff) or (github.com/foo/bar)"`
}
-type DebugCmd struct {
- Config *EmptyCmd `arg:"subcommand:config" help:"used to debug protobuf Marshal() if things go wrong"`
-}
-
type CheckoutCmd struct {
User *FindCmd `arg:"subcommand:user" help:"git checkout user"`
Devel *FindCmd `arg:"subcommand:devel" help:"git checkout devel"`