Преглед на файлове

Searches versioned files when getting a repo path

main
Eric Amodio преди 7 години
родител
ревизия
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;

Зареждане…
Отказ
Запис