Преглед изворни кода

Bumps sha length to avoid collisions

main
Eric Amodio пре 2 година
родитељ
комит
d247c2e690
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/env/node/git/localGitProvider.ts

+ 1
- 1
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',
);
}

Loading…
Откажи
Сачувај