You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add confirmation prompt for non-default branch selection
When user is on a non-default branch that exists on the remote with no
uncommitted changes, they now get a confirmation prompt to choose
between continuing on their current branch or starting from the default
branch. This covers the missing case in the buildConfirmation method.
Co-authored-by: joshspicer <[email protected]>
privatereadonlyBASE_MESSAGE=vscode.l10n.t('Cloud agent works asynchronously to create a pull request with your requested changes. This chat\'s history will be summarized and appended to the pull request as context.');
157
159
privatereadonlyAUTHORIZE_MESSAGE=vscode.l10n.t('Cloud agent requires elevated GitHub access to proceed.');
158
160
privatereadonlyCOMMIT_MESSAGE=vscode.l10n.t('This workspace has uncommitted changes. Should these changes be pushed and included in cloud agent\'s work?');
159
161
privatereadonlyPUSH_BRANCH_MESSAGE=(baseRef: string,defaultBranch: string)=>vscode.l10n.t('Push your currently checked out branch `{0}`, or start from the default branch `{1}`?',baseRef,defaultBranch);
162
+
privatereadonlyCHOOSE_BRANCH_MESSAGE=(baseRef: string,defaultBranch: string)=>vscode.l10n.t('Continue on your currently checked out branch `{0}`, or start from the default branch `{1}`?',baseRef,defaultBranch);
0 commit comments