summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-07-07 20:14:24 -0500
committerJeff Carr <[email protected]>2025-07-07 20:14:24 -0500
commite2d33ea49600423f1669ef1ab4dab5d91aa17610 (patch)
treeafb44884338f65681e34c399da367c488c62f18f /argv.go
parentd3938adf63247cb7393be427f7f5f67d90b4c3b2 (diff)
move argv "sync" under "pull"
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/argv.go b/argv.go
index 143f53b..2502a23 100644
--- a/argv.go
+++ b/argv.go
@@ -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 {