how to git stash a particular 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: stash specific files git
git stash push -m welcome_cart app/views/cart/welcome.thtml