使用git stash命令保存和恢复进度
Posted chen-cheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用git stash命令保存和恢复进度相关的知识,希望对你有一定的参考价值。
使用git stash命令保存和恢复进度
git stash
保存当前工作进度,会把暂存区和工作区的改动保存起来。执行完这个命令后,在运行git status
命令,就会发现当前是一个干净的工作区,没有任何改动。使用git stash save ‘message...‘
可以添加一些注释
git stash list
显示保存进度的列表。也就意味着,git stash
命令可以多次执行。
git stash pop [–index] [stash_id]
git stash pop
恢复最新的进度到工作区。git默认会把工作区和暂存区的改动都恢复到工作区。git stash pop --index
恢复最新的进度到工作区和暂存区。(尝试将原来暂存区的改动还恢复到暂存区)git stash pop [email protected]{1}
恢复指定的进度到工作区。stash_id是通过git stash list
命令得到的
通过git stash pop
命令恢复进度后,会删除当前进度。
git stash apply [–index] [stash_id]
除了不删除恢复的进度之外,其余和git stash pop
命令一样。
git stash drop [stash_id]
删除一个存储的进度。如果不指定stash_id,则默认删除最新的存储进度。
git stash clear
删除所有存储的进度。
来源:CSDN 原文:https://blog.csdn.net/daguanjia11/article/details/73810577?utm_source=copy
以上是关于使用git stash命令保存和恢复进度的主要内容,如果未能解决你的问题,请参考以下文章