命令定义

git stash会把所有未提交的修改(包括暂存的和非暂存的)都保存起来,用于后续恢复当前工作目录。

来看一个案例:

目前的状况是我修改了两个文件:

git status

On branch master
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   file1.tsx
        modified:   file2.tsx

然后我执行checkout操作:

git checkout develop

error: Your local changes to the following files would be overwritten by checkout:
        file1.tsx
        file2.tsx
Please commit your changes or stash them before you switch branches. 

可以看到,很恶心心的提示,我们要commit……,but,stash是什么?

二话不说,直接git stash

git stash
Saved working directory and index state WIP on……

这时候我们执行git status

git status
On branch master
nothing to commit, working tree clean

哇哦,一切都清净了~!
然后我们就可以开开心心的checkout任何分支了!

如何召回暂存的数据

很简单,一条命令

git stash pop 

相当于弹出暂存区中的修改记录。

Tips

  1. stash命令是本地的,不会被push到远程
  2. 建议添加stash的时候指定名称

    git stash save "操作名称"
  3. 查看stash记录

    git stash list
  4. git stash pop 和git stash apply区别
    前者会在取出修改后删除list中的stash记录,后者不会删除list中的记录。
03-05 16:41