From 2374e82633056dbe3bcfa49d21eaf91af9c670b2 Mon Sep 17 00:00:00 2001 From: Yukai Chou Date: Fri, 23 Aug 2024 00:12:09 +0800 Subject: [PATCH] Fix doc typo for `repo sync` --- pkg/cmd/repo/sync/sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/repo/sync/sync.go b/pkg/cmd/repo/sync/sync.go index 4418079b7..b025d9eec 100644 --- a/pkg/cmd/repo/sync/sync.go +++ b/pkg/cmd/repo/sync/sync.go @@ -50,7 +50,7 @@ func NewCmdSync(f *cmdutil.Factory, runF func(*SyncOptions) error) *cobra.Comman of the source repository to update the matching branch on the destination repository so they are equal. A fast forward update will be used except when the %[1]s--force%[1]s flag is specified, then the two branches will - by synced using a hard reset. + be synced using a hard reset. Without an argument, the local repository is selected as the destination repository.