mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 14:31:31 +01:00
Git - switch back to using options instead of subcomands (#237390)
This commit is contained in:
@@ -1088,7 +1088,7 @@ export class Repository implements Disposable {
|
||||
}
|
||||
|
||||
setConfig(key: string, value: string): Promise<string> {
|
||||
return this.run(Operation.Config(false), () => this.repository.config('set', 'local', key, value));
|
||||
return this.run(Operation.Config(false), () => this.repository.config('add', 'local', key, value));
|
||||
}
|
||||
|
||||
log(options?: LogOptions & { silent?: boolean }): Promise<Commit[]> {
|
||||
|
||||
Reference in New Issue
Block a user