mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
suppress the editor during git rebase, fix #114461 Co-authored-by: Ladislau Szomoru <3372902+lszomoru@users.noreply.github.com>
This commit is contained in:
@@ -1472,7 +1472,7 @@ export class Repository {
|
||||
}
|
||||
|
||||
async rebaseContinue(): Promise<void> {
|
||||
const args = ['rebase', '--continue'];
|
||||
const args = ['-c', 'core.editor=true', 'rebase', '--continue'];
|
||||
|
||||
try {
|
||||
await this.exec(args);
|
||||
|
||||
Reference in New Issue
Block a user