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 46b510f commit 6b298b7Copy full SHA for 6b298b7
src/commands/stashApply.ts
@@ -131,7 +131,9 @@ export class StashApplyCommand extends Command {
131
return window.showInformationMessage(`Stash applied with conflicts`);
132
}
133
else {
134
- return Messages.showGenericErrorMessage('Unable to apply stash');
+ return Messages.showGenericErrorMessage(
135
+ `Unable to apply stash \u2014 ${ex.message.trim().replace(/\n+?/g, '; ')}`
136
+ );
137
138
139
0 commit comments