git stash apply stash@{$num}
时间: 2024-01-25 18:13:15 浏览: 109
vscode-gitstash:为VS Code添加了额外的Git隐藏功能
`git stash apply stash@{$num}`命令用于应用指定的存储,并将其应用到当前工作目录中。`{$num}`是存储的索引号,用于指定要应用的存储。
范例:
```shell
git stash apply stash@{1}
```
这将应用第二个存储(索引号为1)到当前工作目录中。
阅读全文