git apply only some file from stash code example
Example 1: how to apply changes in a single file from stash
git restore -s stash@{0} -- <filename>
Example 2: git stash apply item
git checkout stash@{index} -- <filename> #stash particular file
git restore -s stash@{0} -- <filename>
git checkout stash@{index} -- <filename> #stash particular file