Ver a proveniência

Fixes errors when listing history in repos without any tags

main
Eric Amodio há 6 anos
ascendente
cometimento
59794e9e96
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/git/git.ts

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

@ -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) {

Carregando…
Cancelar
Guardar