git使用stash存储相关操作
时间:2019-03-28 11:27:49
收藏:0
阅读:155
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
评论(0)