Skip to content

Instantly share code, notes, and snippets.

@subchen
Created October 31, 2014 08:56
Show Gist options
  • Star 37 You must be signed in to star a gist
  • Fork 15 You must be signed in to fork a gist
  • Save subchen/3409a16cb46327ca7691 to your computer and use it in GitHub Desktop.
Save subchen/3409a16cb46327ca7691 to your computer and use it in GitHub Desktop.
Git Stash 用法

git stash用于保存和恢复工作进度

  • git stash

    保存当前的工作进度。会分别对暂存区和工作区的状态进行保存

  • git stash save "message..."

    这条命令实际上是第一条 git stash 命令的完整版

  • git stash list

    显示进度列表。此命令显然暗示了git stash 可以多次保存工作进度,并用在恢复时候进行选择

  • git stash pop [--index] [<stash>]

    如果不使用任何参数,会恢复最新保存的工作进度,并将恢复的工作进度从存储的工作进度列表中清除。

    如果提供参数(来自 git stash list 显示的列表),则从该 <stash> 中恢复。恢复完毕也将从进度列表中删除 <stash>

    选项--index 除了恢复工作区的文件外,还尝试恢复暂存区。

  • git stash apply [--index] [<stash>]

    除了不删除恢复的进度之外,其余和 git stash pop 命令一样

  • git stash clear

    删除所有存储的进度

Copy link

ghost commented Feb 23, 2017

赞。。

@0xtonyxia
Copy link

Thanks. Very helpful.

@Adaxyl
Copy link

Adaxyl commented Jul 13, 2017

thanks very much

@houdq
Copy link

houdq commented Sep 29, 2017

能否把其他分支的stash直接拉到当分支呢?

@Tbwas
Copy link

Tbwas commented Oct 18, 2017

简单明了,通俗易懂

@liweigong
Copy link

简单明白

@xmgtih
Copy link

xmgtih commented Jan 18, 2018

简单明了,赞

@1024zhangli
Copy link

Good

@taoes
Copy link

taoes commented Jun 12, 2018

Nice,Thanks!

@dickxdeng
Copy link

没有例子,还是不够明了

@courage007
Copy link

courage007 commented Jun 23, 2018

Greate! It is worked when i used git stash save xxxgit stash pop and git stash clear

@Qoozm
Copy link

Qoozm commented Jul 27, 2018

good

@haxianhe
Copy link

haxianhe commented Mar 8, 2019

good!

@longalei
Copy link

怎么理解git stash create?

@zongxiaomi
Copy link

git stash apply --index 怎么理解

@ArthurMorganGithub
Copy link

git stash apply --index 怎么理解
git stash apply 0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment