Explorar el Código

Fixes errors when listing history in repos without any tags

main
Eric Amodio hace 6 años
padre
commit
59794e9e96
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/git/git.ts

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

@ -812,7 +812,7 @@ export class Git {
}
static showref_tag(repoPath: string) {
return git<string>({ cwd: repoPath }, 'show-ref', '--tags');
return git<string>({ cwd: repoPath, errors: GitErrorHandling.Ignore }, 'show-ref', '--tags');
}
static stash_apply(repoPath: string, stashName: string, deleteAfter: boolean) {

Cargando…
Cancelar
Guardar