Answers for "how to save a specific file in stash"

1

git stash apply specific file

git diff stash^! -- path/to/relevant/file/in/stash.ext perhaps/another/file.ext > my.patch
git apply < my.patch
Posted by: Guest on November-18-2020
0

how to save a specific file in stash

git stash push [paths you wish to stash]
Posted by: Guest on October-14-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language