Git shows (master|REVERTING) in command bar after reverting my code. How can I get rid off that?
you are in a middle of a revert. you can do any of the following:
git revert --continue / --quit / --abort
I assume that you mean to do abort and "cancel" the revert
--continue
Continue the operation in progress using the information in .git/sequencer. Can be used to continue after resolving conflicts in a failed cherry-pick or revert.--quit
Forget about the current operation in progress. Can be used to clear the sequencer state after a failed cherry-pick or revert.--abort
Cancel the operation and return to the pre-sequence state.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With