git stash 啥意思
时间: 2023-11-22 19:50:21 浏览: 109
github-stats:一个用于生成Github用户统计信息的仓库
以下是关于git stash的介绍和演示:
1. git stash的作用是将当前工作目录的变更暂存起来,以便稍后恢复或应用到其他分支上。
2. 使用方法:git stash
```shell
git stash
```
3. 作用等同于git stash,区别是可以加一些注释,执行存储时,添加注释,方便查找
```shell
git stash save 'test'
```
4. 删除指定的存储
```shell
git stash drop stash@{$num}
```
5. 清除所有存储
```shell
git stash clear
```
阅读全文