「Git」- 处理 Could not restore untracked files from stash entry 问题

问题描述

使用 git stash –include-untracked 命令,当使用 git stash pop 命令时,产生如下信息:

...
Could not restore untracked files from stash entry

问题原因

Why does git stash pop say that it could not restore untracked files from stash entry? – Stack Overflow

解决办法

git checkout stash -- .

参考文献

Why does git stash pop say that it could not restore untracked files from stash entry? – Stack Overflow