1.保存
$ git stash
解释:会把所有未提交的修改(包括暂存的和非暂存的)都保存起来
$ git stash save "messeag"
解释:会把所有未提交的修改(包括暂存的和非暂存的)都保存起来,并增加说明
$ git stash save -u "messeag"
解释:会把所有未提交的修改(包括1.暂存的;2.非暂存的;3.新加入的代码文件:untracked files)都保存起来,并增加说明
$ git stash save -a "messeag" 不建议用
解释:会把所有未提交的修改(包括1.暂存的;2.非暂存的;3.新加入的代码文;4.其他隐藏文件)都保存起来,并增加说明;不建议用
2.重新应用缓存的stash
$ git stash pop
解释:这个指令将缓存堆栈中的第一个stash删除,并将对应修改应用到当前的工作目录下
$ git stash apply
解释:将缓存堆栈中的stash多次应用到工作目录中,但并不删除stash拷贝
3.查看stash
$ git stash list
解释:在使用git stash apply命令时可以通过名字指定使用哪个stash,默认使用最近的stash(即stash@{0})。
4.移除
$ git stash drop stash@{0}
解释:删除指定的stash
$ git stash clear
解释:删除所有缓存的stash
5. 查看指定stash的diff
$ git stash show
解释:
$ git stash show -p
解释:
6. stash指定的文件
1.多个文件
git stash push <file1> <file2> <file3> [file4 ...]
2.单个文件
git stash push -m "message" file_path
https://www.cnblogs.com/tocy/p/git-stash-reference.html