Explorar el Código

Uses tracking branch for ahead/behind if possible

main
Eric Amodio hace 4 años
padre
commit
99bdfec58e
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      src/git/gitService.ts

+ 4
- 1
src/git/gitService.ts Ver fichero

@ -1148,7 +1148,10 @@ export class GitService implements Disposable {
if (weightedBranch.weight === maxDefaultBranchWeight) break;
}
return GitRevision.createRange(weightedBranch!.branch.ref, branch.ref);
return GitRevision.createRange(
weightedBranch!.branch.tracking ?? weightedBranch!.branch.ref,
branch.ref,
);
}
}

Cargando…
Cancelar
Guardar