I'm currently trying to find some changes in a stash, which I know is stash@{1}. For this, I'm using git grep:
git grep somePattern stash@{1} This returns me what I'm searching for.
However, when running git stash show, these changes aren't here and I get a different diff, not containing my changes.
git stash show stash@{1} Same thing if I try to git stash apply said changes.
Is there any behavior of git stash that is preventing changes to be part of this stash when showing/applying it?