Procházet zdrojové kódy

Stops comparing the branch to itself

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

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

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

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