On some point of developing I used git stash save --all
to stash my progress. But then, when I try to apply this stash: git stash apply stash@{0}
it only get back new files, but files that were modified previously are not changed. It also shows message at the end: Could not restore untracked files from stash
. That is interesting because actually untracked files are the only that were backed up.
If I run git stash show stash@{0}
it shows me the files that were only edited, so edit files are not gone anywhere and they are still inside this stash.
How I can restore all the files, both untracked and modified?