소스 검색

Stops showing <remote>/HEAD as a branch

main
Eric Amodio 4 년 전
부모
커밋
68004f091a
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      src/git/parsers/branchParser.ts

+ 2
- 0
src/git/parsers/branchParser.ts 파일 보기

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

불러오는 중...
취소
저장