I read this answer and (wrongly I guess) thought that it meant git reset could also be used to casually browse through the repository's historical states.
So I went and git reset {some old sha1} to see what the files and state of the repository looked like back then.
Then I wanted to get back so I did git reset HEAD.
But now I can see my repository is not as it was before, and I have no idea what kind of state it's in right now.
How do I return to before all of this happened?
