mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
SCM Graph - Add "Create Tag" action to history item context menu (#228428)
This commit is contained in:
@@ -1563,8 +1563,8 @@ export class Repository implements Disposable {
|
||||
await this.run(Operation.Rebase, () => this.repository.rebase(branch));
|
||||
}
|
||||
|
||||
async tag(name: string, message?: string): Promise<void> {
|
||||
await this.run(Operation.Tag, () => this.repository.tag(name, message));
|
||||
async tag(options: { name: string; message?: string; ref?: string }): Promise<void> {
|
||||
await this.run(Operation.Tag, () => this.repository.tag(options));
|
||||
}
|
||||
|
||||
async deleteTag(name: string): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user