Git - better error handling for git merge-base (#198208)

This commit is contained in:
Ladislau Szomoru
2023-11-14 14:51:17 +01:00
committed by GitHub
parent 67aa71296f
commit ed30010d3f
5 changed files with 13 additions and 8 deletions

View File

@@ -233,7 +233,7 @@ export interface Repository {
getRefs(query: RefQuery, cancellationToken?: CancellationToken): Promise<Ref[]>;
getMergeBase(ref1: string, ref2: string): Promise<string>;
getMergeBase(ref1: string, ref2: string): Promise<string | undefined>;
tag(name: string, upstream: string): Promise<void>;
deleteTag(name: string): Promise<void>;