提交 df9c7d01 编写于 作者: J Joao Moreno

💄

上级 f23a32b7
......@@ -83,6 +83,10 @@ class MergeItem implements QuickPickItem {
get description(): string { return this.ref.name || ''; }
constructor(protected ref: Ref) { }
async run(model: Model): Promise<void> {
await model.merge(this.ref.name);
}
}
interface Command {
......@@ -792,7 +796,7 @@ export class CommandCenter {
return;
}
await this.model.merge(choice.label);
await choice.run(this.model);
}
@command('git.pull')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册