EN
How do I cancel git revert mode?
1
answers
6
points
How do I cancel git revert mode?
I tried to revert some files, but made some mistakes during the way.
Now I am in git revert mode:
miq@DES /c/project/cmp (master|REVERTING)
$
How to quit the '|REVERTING' part and go back to the branch 'master' ?
1 answer
2
points
Quickes solution, just execute:
$ git revert --abort
And you should see:
miq@DES /c/project/cmp (master)
$
0 comments
Add comment