如何从Git Stash保存-u应用更改

问题描述 投票:0回答:1

我使用以下命令git stash save with tracked and untracked files

git stash save -u

但我试图使用git stash apply stash@{0}来应用更改,未跟踪的文件只是被恢复,但是,跟踪的文件没有恢复。我使用git stash show stash@{0}检查存储中仍然可用的所有跟踪文件。

如何从存储中应用跟踪的文件呢?

git
1个回答
-1
投票

使用git stash pop而不是git stash apply来检索所有跟踪和未跟踪的文件。

© www.soinside.com 2019 - 2024. All rights reserved.