summaryrefslogtreecommitdiff
path: root/forgeConfig/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-06 03:05:47 -0600
committerJeff Carr <[email protected]>2025-01-06 03:05:47 -0600
commit35bec795e7195e967d95399329fe7b6d0b7cc069 (patch)
tree3f1085a03ff5398a4299886342a6802e6b6f4822 /forgeConfig/argv.go
parent8f9b66f6c8565f08e18098e330dfe73c22592b9f (diff)
parent98b0d445bc513c5439421d1ec0d32874fc1350f9 (diff)
Merge branch 'jcarr' of gitea.wit.com:jcarr/wit-utils into jcarr
Diffstat (limited to 'forgeConfig/argv.go')
-rw-r--r--forgeConfig/argv.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/forgeConfig/argv.go b/forgeConfig/argv.go
index 635989f..a39509f 100644
--- a/forgeConfig/argv.go
+++ b/forgeConfig/argv.go
@@ -21,6 +21,9 @@ type args struct {
Favorite bool `arg:"--favorite" default:"false" help:"forge will always go-clone or git clone this"`
Private bool `arg:"--private" default:"false" help:"repo can not be published"`
Interesting bool `arg:"--interesting" default:"false" help:"something you decided was cool"`
+ Master string `arg:"--master" help:"the git 'master' or 'main' branch name"`
+ Devel string `arg:"--devel" help:"the git devel branch name"`
+ User string `arg:"--user" help:"the git user branch name"`
}
func (a args) Description() string {