I used the following command to git stash save with tracked and untracked files
git stash save -u
But I was trying to use git stash apply stash@{0}
to apply the changes, the untracked files were only restored, however, the tracked files were not restored. I used git stash show stash@{0}
to check the all tracked files available still in the stash.
How can I apply the tracked files from the stash then?