Explorar el Código

Stops showing <remote>/HEAD as a branch

main
Eric Amodio hace 4 años
padre
commit
68004f091a
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. +2
    -0
      src/git/parsers/branchParser.ts

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

@ -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/

Cargando…
Cancelar
Guardar