-
git stash
保存当前工作进度,会把暂存区和工作区的改动保存起来。执行此命令后,查看工作区(git status)将是一个干净的状态。如果想添加一些详细的注释可以使用命令:git stash save '这是一条注释' -
git stash list
此命令是查看已保存的进度列表,因为 git stash 是可以多次执行的,每次添加都会保存到一个类似于栈的结构中。 -
git stash pop 【-index】【stash_id】恢复后进度也随之删除
执行 git stash pop 命令,会恢复最近的一个进度到工作区,恢复的内容包括工作区和暂存区的改动。
执行 git stash pop --index命令,会恢复最近的一个进度到到工作区和暂存区(c从哪来回哪去)
执行 git stash pop stash@{1}命令,恢复指定的进度到工作区 -
git stash apply [-index] [stash_id] 恢复后进度不删除
与第三条命令相同 -
git stash drop 【stash_id】
删除指定进度 -
git stash clear
删除所有进度
作者:何惜戈
来源:CSDN
原文:https://blog.csdn.net/qq_37049781/article/details/81564032
版权声明:本文为博主原创文章,转载请附上博文链接!
网友评论