> Suppose I have files a,b,c,d modified, but only file d is in the index. > After stash push (or save) --include-untracked, stash show only displays > file d. A subsequent pop will restore files a,b,c,d. So functionally push > and pop are fine, but stash show appears to ignores files in the stash. This is more of an enhancement, isn't it? To reproduce $ touch a b c d $ git add d $ git stash push --include-untracked $ git stash show d | 0 1 file changed, 0 insertions(+), 0 deletions(-) What is the output that you think should be printed? -Giuseppe