git stash 暂存
Posted caohuimingfa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git stash 暂存相关的知识,希望对你有一定的参考价值。
1. 修改
2. $ git stash save ‘chm1‘ 把本地的修改暂存起来,并且给本次暂存备注“chm1”
3. $ git checkout v.duohuozhu.0801 切换到别的分支
4. $ git checkout v.house.0827 切换回本分支
5. $ git stash list 查看所有暂存
6. git stash apply 应用最新的暂存
7. $ git stash apply [email protected]{0} 应用指定名称“[email protected]{0}”的暂存
8. $ git stash drop [email protected]{1} 删除暂存
以上是关于git stash 暂存的主要内容,如果未能解决你的问题,请参考以下文章