I stashed my changes. Now I want to unstash only some files from the stash. How can I do this?
git checkout stash@{N}
Eg. To restore only ./test.c file and ./include folder from last stashed,
git checkout stash@{0} ./test.c ./include