diff options
| author | Jeff Carr <[email protected]> | 2025-07-07 20:14:24 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-07-07 20:14:24 -0500 |
| commit | e2d33ea49600423f1669ef1ab4dab5d91aa17610 (patch) | |
| tree | afb44884338f65681e34c399da367c488c62f18f /argv.go | |
| parent | d3938adf63247cb7393be427f7f5f67d90b4c3b2 (diff) | |
move argv "sync" under "pull"
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 { |
