summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-04 20:02:23 -0500
committerJeff Carr <[email protected]>2025-09-04 20:02:23 -0500
commit770e6752f1f07a00455b423780eca30f8578e610 (patch)
tree191aae30a00538f63d2e6e13407f29ec7c819da6 /argv.go
parentc381a8d17975a53bcbbda329730d0e3020113389 (diff)
add 'forge help'
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/argv.go b/argv.go
index 2dfbc42..68c591e 100644
--- a/argv.go
+++ b/argv.go
@@ -15,6 +15,7 @@ import (
var argv args
type args struct {
+ Help *EmptyCmd `arg:"subcommand:help" help:"New to forge? This is for you.'"`
Checkout *CheckoutCmd `arg:"subcommand:checkout" help:"switch branches using 'git checkout'"`
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"`