We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c2269 commit e7edf6eCopy full SHA for e7edf6e
extensions/git/src/commands.ts
@@ -3277,10 +3277,12 @@ export class CommandCenter {
3277
case GitErrorCodes.Conflict:
3278
message = l10n.t('There are merge conflicts. Resolve them before committing.');
3279
type = 'warning';
3280
+ choices.set(l10n.t('Show Changes'), () => commands.executeCommand('workbench.view.scm'));
3281
options.modal = false;
3282
break;
3283
case GitErrorCodes.StashConflict:
3284
message = l10n.t('There were merge conflicts while applying the stash.');
3285
3286
3287
3288
0 commit comments