瀏覽代碼

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/

Loading…
取消
儲存