Skip to content

Commit f49b1ea

Browse files
Fixes incorrectly marked head refs in commit graph
1 parent 6016402 commit f49b1ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/env/node/git/localGitProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2491,12 +2491,12 @@ export class LocalGitProvider implements GitProvider, Disposable {
24912491
refRemoteHeads = [];
24922492
refTags = [];
24932493
contexts = {};
2494-
head = false;
24952494

24962495
if (commit.tips) {
24972496
groupedRefs.clear();
24982497

24992498
for (tip of commit.tips.split(', ')) {
2499+
head = false;
25002500
if (tip === 'refs/stash') continue;
25012501

25022502
if (tip.startsWith('tag: ')) {

0 commit comments

Comments
 (0)