how to stash changes of a particular file in git code example
Example 1: how to apply changes in a single file from stash
git checkout stash@{0} -- <filename>
Example 2: git stash changes to particular file
git stash push <path>
git checkout stash@{0} -- <filename>
git stash push <path>