git stash doesn't show with me after i stash save a untracked file

git

Solution

use `git show stash@{0}^3` to show all the untracked files stashed.

Problem

git stash doesn't show untracked files after I use `git stash save -u`: ``` D:\kzxd-usm\KzxdUsm>git status Already up-to-date! # On branch work # Untracked files: # (use "git add <file>..." to include in what will be committed) # # WebRoot/WEB-INF/jsp/usm/org/Copy of list.jsp nothing added to commit but untracked files present (use "git add" to track) ``` I want list the untracked file after it's stashed with `git stash save -u`: ``` D:\kzxd-usm\KzxdUsm>git stash list --stat stash@{0}: On work: hide copy of list.jsp ``` It has only a little comment text and does not have stashed file information.

Original source

Related problems