stash
可将未提交的修改保存至堆栈中文章来源:https://www.toymoban.com/news/detail-629585.html
1. 添加暂存
git add . # 把文件加到版本控制里
git stash push [-m "说明"] # 紧急离开一下,暂时保存当前修改
2. 查看暂存
git stash list # 查看记录
git stash show [stash@{index}] # 查看stash修改列表
git stash show -p [stash@{index}] # 查看stash修改详情
3. 弹出暂存
git stash pop [stash@{index}] # 弹出某次Stash
git stash apply [stash@{index}] # 拷贝某次Stash
4. 删除暂存
git stash drop [stash@{index}] # 删除某次Stash
git stash clear # 删除全部Stash
参考链接
https://git-scm.com/book/zh/v2文章来源地址https://www.toymoban.com/news/detail-629585.html
到了这里,关于Git - 暂存的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!