diff --git a/src/env/node/git/localGitProvider.ts b/src/env/node/git/localGitProvider.ts index 0c92d7e..2f4f7a9 100644 --- a/src/env/node/git/localGitProvider.ts +++ b/src/env/node/git/localGitProvider.ts @@ -1618,7 +1618,7 @@ export class LocalGitProvider implements GitProvider, Disposable { const stash = await this.getStash(repoPath); if (stash != null) { stdin = join( - map(stash.commits.values(), c => c.sha.substring(0, 7)), + map(stash.commits.values(), c => c.sha.substring(0, 9)), '\n', ); }