mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-01 14:01:38 +01:00
Merge branch 'git-merge' of https://github.com/gecharo/vscode into gecharo-git-merge
This commit is contained in:
@@ -654,6 +654,11 @@ export class Repository {
|
||||
await this.run(args);
|
||||
}
|
||||
|
||||
async merge(name: string): Promise<void> {
|
||||
const args = ['merge', name];
|
||||
await this.run(args);
|
||||
}
|
||||
|
||||
async clean(paths: string[]): Promise<void> {
|
||||
const pathsByGroup = groupBy(paths, p => path.dirname(p));
|
||||
const groups = Object.keys(pathsByGroup).map(k => pathsByGroup[k]);
|
||||
|
||||
Reference in New Issue
Block a user