git stash one file

C++
git stash apply "stash@{n}"
or
git stash apply ngit checkout stash@{0} -- <filename>
git stash save "name to describe stashed content"git stash push -m welcome_cart app/views/cart/welcome.thtmlgit stash save -- just_my_file.txt
$ git stash -- filename.ext

Source

Also in C++: