This question already has an answer here:
- How do I undo the most recent commits in Git? 77 answers
By mistake, I did git add .
and git commit
in the develop
branch. But luckily, I did not do git push
.
So I wanted to revert it back to original state.
I tried git reset --soft
and git reset HEAD --hard
but looks like I have messed it up.
How do I fix this? I want to go back to original state and possibly keep the code changes.