diff --git a/src/git/git.ts b/src/git/git.ts index 4a9b1d1..b70e957 100644 --- a/src/git/git.ts +++ b/src/git/git.ts @@ -812,7 +812,7 @@ export class Git { } static showref_tag(repoPath: string) { - return git({ cwd: repoPath }, 'show-ref', '--tags'); + return git({ cwd: repoPath, errors: GitErrorHandling.Ignore }, 'show-ref', '--tags'); } static stash_apply(repoPath: string, stashName: string, deleteAfter: boolean) {