瀏覽代碼

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

Loading…
取消
儲存