git stash应用

git status

git diff

git stash  // 修改入栈

git checkout ***  // 切分支

git stash list  // 显示栈内的修改

git show stash@{0}  // 显示修改

git stash apply stash@{1}  // 将对应修改应用过来
原文地址:https://www.cnblogs.com/mayfly-xlc/p/10346277.html