mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
Expose 'tag' and 'deleteTag' in git extension API (#123815)
This commit is contained in:
committed by
GitHub
parent
2eaf2f61aa
commit
b0d7083e79
3
extensions/git/src/api/git.d.ts
vendored
3
extensions/git/src/api/git.d.ts
vendored
@@ -198,6 +198,9 @@ export interface Repository {
|
||||
|
||||
getMergeBase(ref1: string, ref2: string): Promise<string>;
|
||||
|
||||
tag(name: string, upstream: string): Promise<void>;
|
||||
deleteTag(name: string): Promise<void>;
|
||||
|
||||
status(): Promise<void>;
|
||||
checkout(treeish: string): Promise<void>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user