git stash specific files onlt code example
Example 1: git stash one file
git stash save -- just_my_file.txt
Example 2: git stash changes to particular file
git stash push <path>
git stash save -- just_my_file.txt
git stash push <path>