git apply stash specific file code example
Example 1: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 2: how to apply changes in a single file from stash
git checkout stash@{0} -- <filename>
Example 3: 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