git stash 是 Git 提供的一个强大的工具,它允许你临时保存(或“暂存”)当前工作目录和索引(暂存区)的改动,从而可以切换分支或执行其他操作而不影响当前的工作状态。下面是 git stash 的一些常用命令及其解释:
git stash
这条命令会将当前的工作目录和暂存区的改动保存到一个新的stash中,并且将这些改动从工作目录中移除,回到一个干净的工作状态。你可以继续在这个基础上进行其他任务,比如切换分支。
git stash save “message describing what you stashed”
和普通的 git stash 命令类似,但是你可以为 stash 项添加描述,便于以后识别。
git stash list
列出所有的 stash 项。每个项都有一个识别符,比如 stash@{0},stash@{1} 等等。
git stash apply
这个命令会将最近保存的 stash 应用到当前工作目录,但不会从 stash 列表中删除该项。
git stash apply stash@{n}
其中 n 是你想要应用的 stash 项的编号。
git stash drop
这个命令将删除最近的 stash 项。
git stash drop stash@{n}
其中 n 是你想要删除的 stash 项的编号。
git stash pop
这个命令会应用最近的 stash 项,并将其从 stash 列表中删除。
git stash clear
该命令将删除所有保存的 stash 项。