What command is used to abort an interactive rebase in progress?
Posted by EveClark
Last Updated: July 19, 2024
To abort an interactive rebase in progress, you can use the following command:
git rebase --abort
This command will stop the rebase process and return your repository to the state it was in before the rebase began.