I made several commits (commit1/2/3), I changed my working directory without stashing. Then I wanted to go back several commits ago. So I git revert commit1 commit2 commit3, but I was told to commit my changes (commit4), so I did it, and then I made again git revert commit1 commit2 commit3 commit4, but I had a message
error: a cherry-pick or revert is already in progress hint: try "git cherry-pick (--continue | --quit | --abort)"
When I run git branch -va, HEAD is pointing to commit 3.
I don't quite understand what is going on. What should I do now to make things reverted?