一个代码堆栈
常用的命令如下
# 增
git stash # 存储代码,压入代码堆栈
git stash save "message" # 推荐
# 查
git stash list # 查看现有记录
git stash show # 检查不一样的地方
# 删
git stash pop # 弹出最新压入代码堆栈的代码
git stash drop stash@{1} # 删除
git stash clear # 删除所有
参考
git-stash用法小结