how to view untracked files that were “git stash -u”
问题 Stashing content in git is very useful. when stashing untrack files and going through your stash like this echo test > foo git stash -u # foo is stashed git stash show -p stash@{0} untracked files are not shown. how can we see them? thanks 回答1: You just need to look at the third stash commit. But "just need to" understates things a little bit, and this makes no sense until you know what the three stash commits are . To see what I mean, read on. Setup: what to know about stashes When you run