I have gotten in the habit of using the git stash
/git stash pop
feature as I get random requests to make fixes at work while I'm in the middle of doing something on a different branch.
This morning I decided to start with a project I was working on on a different branch. I didn't remember if anything was stashed or not so I called git stash pop. Inexplicably, I called it twice more. I have no idea what I did, but I want to undo it. What should I do exactly?
Thanks!