I have 2 terminal windows, 1 for my Host machine and one for my vagrant machine.
I did a git stash save -u "database rework"
on my host machine before temporarily chaning branches. The terminal printed:
Saved working directory and index state On feature/kanban: database rework
HEAD is now at 83a5566`
Then I changed to a branch on origin, and then changed back to my previous branch (without doing any changes).
THEN I changed to my vagrant machine terminal window, and ran git stash pop
by accident (by accident, since I ALWAYS use git on my host machine, I haven't explicitly configured guest machine Git) and there it is, all my work is lost.
It popped some random changes, but my untracked files were not there.
Please tell me there's a way to recover it.