git stash 将当前修改存储起来
git stash apply 恢复最近一次存储
git stash apply stash@{2} 恢复某一次存储
git stash list 查看存储列表
git stash clear 清除所有存储
git stash drop stash@{2} 删除某一次存储
本文共 207 字,大约阅读时间需要 1 分钟。
git stash 将当前修改存储起来
git stash apply 恢复最近一次存储
git stash apply stash@{2} 恢复某一次存储
git stash list 查看存储列表
git stash clear 清除所有存储
git stash drop stash@{2} 删除某一次存储
转载于:https://www.cnblogs.com/lqw007/p/10613378.html