Expose git merge as extension API (#202503)

* Expose git merge as extension API
Part of microsoft/vscode-pull-request-github#200

* Respond to PR feedback
This commit is contained in:
Alex Ross
2024-01-15 17:22:43 +01:00
committed by GitHub
parent f70f159413
commit 7109701918
2 changed files with 10 additions and 0 deletions

View File

@@ -257,6 +257,8 @@ export interface Repository {
log(options?: LogOptions): Promise<Commit[]>;
commit(message: string, opts?: CommitOptions): Promise<void>;
merge(ref: string): Promise<void>;
mergeAbort(): Promise<void>;
}
export interface RemoteSource {