diff --git a/extensions/git/src/commands.ts b/extensions/git/src/commands.ts index 63927a57e3c..03910fc8217 100644 --- a/extensions/git/src/commands.ts +++ b/extensions/git/src/commands.ts @@ -2303,7 +2303,7 @@ export class CommandCenter { const shouldPrompt = !isReadonly && config.get('confirmSync') === true; if (shouldPrompt) { - const message = localize('sync is unpredictable', "This action will push and pull commits to and from '{0}/{1}'.", HEAD.upstream.remote, HEAD.upstream.name); + const message = localize('sync is unpredictable', "This action will pull and push commits from and to '{0}/{1}'.", HEAD.upstream.remote, HEAD.upstream.name); const yes = localize('ok', "OK"); const neverAgain = localize('never again', "OK, Don't Show Again"); const pick = await window.showWarningMessage(message, { modal: true }, yes, neverAgain);