Here is my problem:
- After doing some changes in my project, I executed
git stash
, but I did not executegit add .
before. - I then removed one folder I was working in before doing
git stash
. - Finally, when I wanted to
pop
the changes I found that the folder was not there.
What happened? Is there any solution?
Thanks again.