how to stash single file in git code example
Example 1: stash a single file
git stash push -m "describe changes to filename.ext" filename.ext
Example 2: aad a single file to stash
git stash push -m welcome_cart app/views/cart/welcome.thtml
Example 3: stash specific files git
git stash push -m welcome_cart app/views/cart/welcome.thtml