Selaa lähdekoodia

Uses tracking branch for ahead/behind if possible

main
Eric Amodio 4 vuotta sitten
vanhempi
commit
99bdfec58e
1 muutettua tiedostoa jossa 4 lisäystä ja 1 poistoa
  1. +4
    -1
      src/git/gitService.ts

+ 4
- 1
src/git/gitService.ts Näytä tiedosto

@ -1148,7 +1148,10 @@ export class GitService implements Disposable {
if (weightedBranch.weight === maxDefaultBranchWeight) break;
}
return GitRevision.createRange(weightedBranch!.branch.ref, branch.ref);
return GitRevision.createRange(
weightedBranch!.branch.tracking ?? weightedBranch!.branch.ref,
branch.ref,
);
}
}

Ladataan…
Peruuta
Tallenna