stash one file in git code example

Example 1: git stash one file

git stash save -- just_my_file.txt

Example 2: how to apply changes in a single file from stash

git checkout stash@{0} -- <filename>

Example 3: stash a single file

git stash push -m "describe changes to filename.ext" filename.ext

Example 4: aad a single file to stash

git stash push -m welcome_cart app/views/cart/welcome.thtml

Example 5: how to apply changes in a single file from stash

git restore -s stash@{0} -- <filename>

Example 6: stash specific files git

git stash push -m welcome_cart app/views/cart/welcome.thtml