Selaa lähdekoodia

Fixes errors when listing history in repos without any tags

main
Eric Amodio 6 vuotta sitten
vanhempi
commit
59794e9e96
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts Näytä tiedosto

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

Ladataan…
Peruuta
Tallenna