Procházet zdrojové kódy

Stops showing <remote>/HEAD as a branch

main
Eric Amodio před 4 roky
rodič
revize
68004f091a
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. +2
    -0
      src/git/parsers/branchParser.ts

+ 2
- 0
src/git/parsers/branchParser.ts Zobrazit soubor

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

Načítá se…
Zrušit
Uložit