git stash pop one file code example
Example 1: 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
Example 2: git stash pop specific
git stash pop stash@\{1\}
Example 3: git stash pop single file
git checkout stash@{0} -- <filename>