Git Stash Appliquez un fichier spécifique
git diff stash^! -- path/to/relevant/file/in/stash.ext perhaps/another/file.ext > my.patch
git apply < my.patch
Elegant Earthworm
git diff stash^! -- path/to/relevant/file/in/stash.ext perhaps/another/file.ext > my.patch
git apply < my.patch
# interactive
git stash -p
# interactive with message
git stash -pm "message"
git stash apply 1
# interactive
git stash -p