소스 검색

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

불러오는 중...
취소
저장