Procházet zdrojové kódy

Uses tracking branch for ahead/behind if possible

main
Eric Amodio před 4 roky
rodič
revize
99bdfec58e
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. +4
    -1
      src/git/gitService.ts

+ 4
- 1
src/git/gitService.ts Zobrazit soubor

@ -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,
);
}
}

Načítá se…
Zrušit
Uložit