Parcourir la source

Searches versioned files when getting a repo path

main
Eric Amodio il y a 6 ans
Parent
révision
78bb6ef803
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. +5
    -0
      src/gitService.ts

+ 5
- 0
src/gitService.ts Voir le fichier

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

Chargement…
Annuler
Enregistrer