소스 검색

Fixes issue with missing revision error

main
Eric Amodio 6 년 전
부모
커밋
8ee779cf93
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -2
      src/git/git.ts

+ 4
- 2
src/git/git.ts 파일 보기

@ -586,12 +586,14 @@ export class Git {
}
catch (ex) {
const msg = ex && ex.toString();
if (GitWarnings.notFound.test(msg) || GitWarnings.foundButNotInRevision.test(msg)) return undefined;
if (ref === ':' && GitErrors.badRevision.test(msg)) {
return Git.show(repoPath, fileName, 'HEAD:', options);
}
if (GitErrors.badRevision.test(msg) ||
GitWarnings.notFound.test(msg) ||
GitWarnings.foundButNotInRevision.test(msg)) return undefined;
return gitCommandDefaultErrorHandler(ex, opts, args);
}
}

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