how to pop only few files in git stash code example
Example 1: git stash apply item
git stash apply stash@{index}
Example 2: git stash apply specific file
git diff stash^! -- path/to/relevant/file/in/stash.ext perhaps/another/file.ext > my.patch
git apply < my.patch