Selaa lähdekoodia

Include detached HEAD as local ref

main
Ramin Tadayon 2 vuotta sitten
committed by Eric Amodio
vanhempi
commit
3e3104973c
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. +3
    -3
      src/env/node/git/localGitProvider.ts

+ 3
- 3
src/env/node/git/localGitProvider.ts Näytä tiedosto

@ -1756,7 +1756,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
if (commit.tips) {
for (let tip of commit.tips.split(', ')) {
if (tip === 'refs/stash' || tip === 'HEAD') continue;
if (tip === 'refs/stash') continue;
if (tip.startsWith('tag: ')) {
refTags.push({
@ -1768,8 +1768,8 @@ export class LocalGitProvider implements GitProvider, Disposable {
continue;
}
current = tip.startsWith('HEAD -> ');
if (current) {
current = tip.startsWith('HEAD');
if (current && tip !== 'HEAD') {
tip = tip.substring(8);
}

Ladataan…
Peruuta
Tallenna