Git stash 常见用法

Posted 浅浅念

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git stash 常见用法相关的知识,希望对你有一定的参考价值。

  Git stash

  git stash这个命令可以将当前的工作状态保存到git栈,在需要的时候再恢复

  1.1 git stash 

    保存当前的工作区与暂存区的状态,把当前的工作隐藏起来,等以后需要的时候再恢复,git stash 这个命令可以多次使用,每次使用都会新加一个[email protected]{num},num是编号

  1.2 git stash pop

    默认恢复git栈中最新的一个[email protected]{num},建议在git栈中只有一条的时候使用,以免混乱

  1.3 git stash list

    查看所有被隐藏的文件列表

  1.4 git stash apply

    恢复被隐藏的文件,但是git栈中的这个不删除,用法:git stash apply [email protected]{0},如果我们在git stash apply 的时候工作目录下的文件一部分已经加入了暂存区,部分文件没有,

    当我们执行git stash apply之后发现所有的文件都变成了未暂存的,如果想维持原来的样子,即暂存过的依旧是暂存状态,那么可以使用 git stash apply --index

  1.5 git stash drop

    删除指定的一个进度,默认删除最新的进度,使用方法如git stash drop [email protected]{0}

  1.6 git stash clear 

    删除所有存储的进度

  1.7 git stash show

    显示stash的内容具体是什么,使用方法如 git stash show [email protected]{0}

  1.8 查看帮助

    git stash --help

  1.9 关于作者

    姓名:张坤武

    邮件:[email protected]

以上是关于Git stash 常见用法的主要内容,如果未能解决你的问题,请参考以下文章

git-stash用法小结(转)

git --- git stash用法

git --- stash用法

Git Stash用法

git命令之git stash apply和 pop 的区别

git stash 储藏