I was working on stuff. I had to stash it to work on something quickly. Now I want to recover the stuff I was working on. So I run git stash list which gives me this:
stash@{0}: WIP on developers: 044f243 fixing some bugs since address resource
So I run git stash apply stash@{0}
. I thought it would bring back all of the files, but it only brought back SOME of the files. When I run git stash list again, I still see the following:
stash@{0}: WIP on developers: 044f243 fixing some bugs since address resource
If I run git stash apply stash@{0}
again, then I get the following error:
error: Your local changes to the following files would be overwritten by merge:
I just want to bring back all of the files I was working on before I ran git stash. How do I do that?