我使用以下命令git stash save with tracked and untracked files
git stash save -u
但我试图使用git stash apply stash@{0}
来应用更改,未跟踪的文件只是被恢复,但是,跟踪的文件没有恢复。我使用git stash show stash@{0}
检查存储中仍然可用的所有跟踪文件。
如何从存储中应用跟踪的文件呢?
使用git stash pop
而不是git stash apply
来检索所有跟踪和未跟踪的文件。