I accidentally run git checkout .
and lost the changes I made on my local repo.
I remember that once I had those changes stashed but I used git stash pop
to retrieve them (sadly, I didn't know about git stash apply
at the time), and now I can not find these changes on my stash.
I searched on SO but most of the answers were for git stash apply
, or told me to retrieve the SHA-1 outputted after the git stash pop
, but I don't have that information.
Is there any way to recover my changes?