Git储藏与恢复

1 cd /f
2 cd android
3 git status
4 echo 'shoping' >> 4  //修改内容
5 git status
6 git stash  //git储藏
7 git status
8 git stash list  //查看储藏的内容
9 git stash apply  //恢复
原文地址:https://www.cnblogs.com/MC-Curry/p/8452065.html