diff options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,6 @@ type args struct { List *FindCmd `arg:"subcommand:list" help:"print a table of the current repos"` Patch *PatchCmd `arg:"subcommand:patch" help:"make patchsets"` GitPull *PullCmd `arg:"subcommand:pull" help:"run 'git pull'"` - Sync *SyncCmd `arg:"subcommand:sync" help:"sync repos with upstream"` URL string `arg:"--connect" help:"forge url"` All bool `arg:"--all" help:"git commit --all"` Build string `arg:"--build" help:"build a repo"` @@ -71,6 +70,7 @@ type PullCmd struct { Test *EmptyCmd `arg:"subcommand:test" help:"list repos that need 'git pull'"` Dirty *EmptyCmd `arg:"subcommand:dirty" help:"only check dirty repos"` Patches *EmptyCmd `arg:"subcommand:patches" help:"only check repos with patches"` + Sync *SyncCmd `arg:"subcommand:sync" help:"sync repos with upstream"` } type ConfigAddCmd struct { |
