summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/argv.go b/argv.go
index 17a5b7e..88f3614 100644
--- a/argv.go
+++ b/argv.go
@@ -25,7 +25,7 @@ type args struct {
Add *EmptyCmd `arg:"subcommand:add" help:"Scan directores for git repos"`
Fixer *FixCmd `arg:"subcommand:fixer" help:"send in the fixer"`
Verify *VerifyCmd `arg:"subcommand:verify" help:"populate stats"`
- Whatchanged *EmptyCmd `arg:"subcommand:whatchanged" help:"being deprecated (perhaps?). this is just for finger memory."`
+ Whatchanged *EmptyCmd `arg:"subcommand:whatchanged" `
Rebuild *RebuildCmd `arg:"subcommand:rebuild" help:"download all the forge sources and rebuild forge"`
Generate *GenerateCmd `arg:"subcommand:generate" help:"helps run autogenpb in repos with .proto files"`
All bool `arg:"--all" help:"whatever you are doing, do it all over"`
@@ -144,7 +144,7 @@ type TagCmd struct {
}
type MergeCmd struct {
- All bool `arg:"--all" help:"merge all"`
+ All bool `arg:"--all" help:"merge all user branches to devel and master"`
Devel *EmptyCmd `arg:"subcommand:devel" help:"merge user to devel"`
Master *EmptyCmd `arg:"subcommand:master" help:"merge devel to master"`
Publish *EmptyCmd `arg:"subcommand:publish" help:"increment versions and publish master branch"`