常用的git stash命令
- git stash save 'save message'。其中save 'save message'的作用是为stash的内容添加备注信息,可省略。
- git stash list 。 查看stash的内容列表。
- git stash show 。 查看做了哪些改动,默认查看stash list的第一个,如要查看其他的,可以输入 git stash show stash@{序号}。
- git stash apply 。应用某个stash,但不会把这个stash从stash list中清除掉;默认应用第一个,如要应用其他的,可以输入git stash apply stash@{序号}。
- git stash pop 。应用某个stash,并把其从stash list中清除掉,默认应用第一个,应用其他方法同上。
- git stash clear 。清空stash list。
- git stash drop stash@{序号}。从stash list中把某次stash删除。
如何stash新增、删除掉的文件?
先把新增、删除掉的文件使用git add添加到git的版本控制中,再使用git stash命令添加贮藏。
如何stash部分文件
- 将不需要贮藏的文件使用git add 添加到暂存区。
- 使用git stash -keep-index,只会贮藏那些没有add的文件。
- 使用git reset将之前add的文件从暂存区取出,继续工作~
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。