Ver código fonte

Searches versioned files when getting a repo path

main
Eric Amodio 6 anos atrás
pai
commit
78bb6ef803
1 arquivos alterados com 5 adições e 0 exclusões
  1. +5
    -0
      src/gitService.ts

+ 5
- 0
src/gitService.ts Ver arquivo

@ -1120,6 +1120,11 @@ export class GitService extends Disposable {
const repo = await this.getRepository(filePathOrUri, { ...options, skipCacheUpdate: true });
if (repo !== undefined) return repo.path;
if (typeof filePathOrUri !== 'string') {
const versionedUri = await Container.git.getVersionedUri(filePathOrUri);
if (versionedUri !== undefined) return versionedUri.repoPath;
}
const rp = await this.getRepoPathCore(typeof filePathOrUri === 'string' ? filePathOrUri : filePathOrUri.fsPath, false);
if (rp === undefined) return undefined;

Carregando…
Cancelar
Salvar