ソースを参照

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

読み込み中…
キャンセル
保存