I\'ve been using git stash pop for quite some time. I recently found out about the git stash apply command. When I tried it out, it seemed to work
git stash pop
git stash apply
git stash pop applies the top stashed element and removes it from the stack. git stash apply does the same, but leaves it in the stash stack.