git stash pop 은 git stash apply && git stash drop 과 같기 떄문에,
git stash pop
git stash apply && git stash
git stash apply stash@{0} 로 꺼내서 쓰면 stash list에서 사라지지 않고 적용할 수 있다.
git stash apply stash@{0}