Git: Add "git rebase --abort" command (#97071)

Add "git rebase --abort" command
This commit is contained in:
Ladislau Szomoru
2020-05-07 14:26:55 +02:00
committed by GitHub
parent ff8902990d
commit ee8a6bc4f8
5 changed files with 19 additions and 0 deletions

View File

@@ -1333,6 +1333,10 @@ export class Repository {
}
}
async rebaseAbort(): Promise<void> {
await this.run(['rebase', '--abort']);
}
async rebaseContinue(): Promise<void> {
const args = ['rebase', '--continue'];