Преглед изворни кода

Stops comparing the branch to itself

main
Eric Amodio пре 3 година
родитељ
комит
183873a418
1 измењених фајлова са 4 додато и 4 уклоњено
  1. +4
    -4
      src/git/gitService.ts

+ 4
- 4
src/git/gitService.ts Прегледај датотеку

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

Loading…
Откажи
Сачувај