소스 검색

Fixes issue with paths that contain `.git`

main
Eric Amodio 7 년 전
부모
커밋
0363bcf6c6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/git/models/repository.ts

+ 1
- 1
src/git/models/repository.ts 파일 보기

@ -138,7 +138,7 @@ export class Repository extends Disposable {
private onFileSystemChanged(uri: Uri) {
// Ignore .git changes
if (/\.git/.test(uri.fsPath)) return;
if (/\.git(?:\/|\\|$)/.test(uri.fsPath)) return;
this.fireFileSystemChange(uri);
}

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