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
Assuming there will be no errors thrown, and you want to work on the top stash item in the list of available stashes:
git stash pop = git stash apply + git stash drop
git stash drop