Kaynağa Gözat

Stops comparing the branch to itself

main
Eric Amodio 3 yıl önce
ebeveyn
işleme
183873a418
1 değiştirilmiş dosya ile 4 ekleme ve 4 silme
  1. +4
    -4
      src/git/gitService.ts

+ 4
- 4
src/git/gitService.ts Dosyayı Görüntüle

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

Yükleniyor…
İptal
Kaydet