Просмотр исходного кода

Searches versioned files when getting a repo path

main
Eric Amodio 6 лет назад
Родитель
Сommit
78bb6ef803
1 измененных файлов: 5 добавлений и 0 удалений
  1. +5
    -0
      src/gitService.ts

+ 5
- 0
src/gitService.ts Просмотреть файл

@ -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;

Загрузка…
Отмена
Сохранить