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:
xxxxxxxxxx
1
miq@DES /c/project/cmp (master|REVERTING)
2
$
How to quit the '|REVERTING' part and go back to the branch 'master' ?
1 answer
2 points
Quickes solution, just execute:
xxxxxxxxxx
1
$ git revert --abort
And you should see:
xxxxxxxxxx
1
miq@DES /c/project/cmp (master)
2
$
0 commentsShow commentsAdd comment