git stash
https://blog.csdn.net/qq_38425719/article/details/107792754
https://blog.csdn.net/lonely_fool/article/details/125681803
git stash
git stash pop
git stash apply
使用方法:
git stash apply stash@{$num}
git stash apply stash@{0}
将堆栈中的内容恢复到当前分支下。这个命令不同于 git stash pop。该命令不会将内容从对堆栈中删除,也就是该命令能够将堆栈的内容多次运用到工作目录,适合用与多个分支的场景
stash 只会操作被git追踪的文件