git 暂存操作

1、git stash 把改动的代码暂存到起来
2、git stash llist 显示暂存代码的列表
3、git stash pop stash@{id} git stash apply stash@{id} 恢复暂存区
git stash pop stash@{id}命令会在执行后将对应的stash id 从stash list里删除,而 git stash apply stash@{id} 命令则会继续保存stash id
4、git stash drop 删除暂存 不加id就是删除最新的
git stash clear 是清除所有stash

你可能感兴趣的:(git)