Ver a proveniência

Stops showing <remote>/HEAD as a branch

main
Eric Amodio há 4 anos
ascendente
cometimento
68004f091a
1 ficheiros alterados com 2 adições e 0 eliminações
  1. +2
    -0
      src/git/parsers/branchParser.ts

+ 2
- 0
src/git/parsers/branchParser.ts Ver ficheiro

@ -44,6 +44,8 @@ export class GitBranchParser {
if (name.startsWith('refs/remotes/')) {
// Strip off refs/remotes/
name = name.substr(13);
if (name.endsWith('/HEAD')) continue;
remote = true;
} else {
// Strip off refs/heads/

Carregando…
Cancelar
Guardar