diff options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -39,11 +39,12 @@ type PatchCmd struct { } type ReposCmd struct { - List *EmptyCmd `arg:"subcommand:list" help:"list the repos"` - Pull *EmptyCmd `arg:"subcommand:pull" help:"'git pull' on the repos"` - Clean *EmptyCmd `arg:"subcommand:clean" help:"clean the repos"` - Merge *EmptyCmd `arg:"subcommand:merge" help:"merge in new patchsets"` - Init *EmptyCmd `arg:"subcommand:init" help:"init the repo list"` + List *EmptyCmd `arg:"subcommand:list" help:"list the repos"` + Pull *EmptyCmd `arg:"subcommand:pull" help:"'git pull' on the repos"` + Clean *EmptyCmd `arg:"subcommand:clean" help:"clean the repos"` + Merge *EmptyCmd `arg:"subcommand:merge" help:"merge in new patchsets"` + Scan *EmptyCmd `arg:"subcommand:scan" help:"scan the forged repo dir"` + Reload *EmptyCmd `arg:"subcommand:reload" help:"do Reload() on each git repo"` } func (args) Appname() string { |
