diff --git a/extensions/git/src/commands.ts b/extensions/git/src/commands.ts index ad4e32920b9..21c1b2e3e0b 100644 --- a/extensions/git/src/commands.ts +++ b/extensions/git/src/commands.ts @@ -3554,7 +3554,7 @@ export class CommandCenter { for (const file of stashFiles) { const fileUri = Uri.file(path.join(repository.root, file)); - args.push([fileUri, toGitUri(fileUri, `stash@{${stash.index}}`), fileUri]); + args.push([fileUri, fileUri, toGitUri(fileUri, `stash@{${stash.index}}`)]); } commands.executeCommand('vscode.changes', `Git Stash #${stash.index}: ${stash.description}`, args);