git stash 将当前修改存储起来
git stash apply 恢复最近一次存储
git stash apply stash@{2} 恢复某一次存储
git stash list 查看存储列表
git stash clear 清除所有存储
git stash drop stash@{2} 删除某一次存储
git使用stash存储相关操作
原文:https://www.cnblogs.com/lqw007/p/10613378.html