Here is my git log:
I want to reset the most recent commit (top).
If I run git reset --hard HEAD~1, however, it takes me back by five commits!
Similarly, if I run git rebase -i HEAD~3, I expect to see the most recent three commits appear, but instead I get about 50!
What could be going wrong?