git stash only one file code example
Example 1: git stash one file
git stash save -- just_my_file.txt
Example 2: git stash one file
$ git stash -- filename.ext
Example 3: how to apply changes in a single file from stash
git checkout stash@{0} -- <filename>
Example 4: how to apply changes in a single file from stash
git restore -s stash@{0} -- <filename>
Example 5: stash specific files git
git stash push -m welcome_cart app/views/cart/welcome.thtml