If I run git stash -u
, I can stash untracked files. However, said untracked files don\'t show up at all with git stash show stash@{0}
. Is there
A workaround: Staging files before stashing them will make git stash show -p
work as expected.
git add .
git stash save
Note: This way gives the power adding interactive portions too, here is how.
Caution: Ensure you don't have previously staged work, or you won't be able to distinguish it.
This may be of use.