suppress the editor during git rebase, fix #114461

Co-authored-by: Ladislau Szomoru <3372902+lszomoru@users.noreply.github.com>
This commit is contained in:
Ping
2022-07-20 21:03:43 +08:00
committed by GitHub
parent 60f09d6f7d
commit 0b2c56eb7b

View File

@@ -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);