目录
- git stash
- git stash save “”
- git stash list: 获取stash列表
- git stash pop:恢复最近一次stash缓存
- git stash apply stash@{index}: 恢复指定缓存
- 在这里插入图片描述
- git stash drop stash@{1}:删除指定缓存
- git stash clear :删除stash
git stash
git stash
保存当前未提交的修改(不管是否add)。
git stash save “”
git stash 存储改动后,
通过git stash save “” 自定义消息
git stash list: 获取stash列表
git stash list
git stash pop:恢复最近一次stash缓存
git stash pop
git stash apply stash@{index}: 恢复指定缓存
注意:在vscode终端运行,报错
网上查了一下,说是花括号在 PowerShell 中被认为是代码块执行标识符;转义一下可以正常使用:
git stash apply stash@`{0`}
git stash drop stash@{1}:删除指定缓存
git stash apply stash@{1} 不会删除stash list 中的缓存。