1.git stash: 保存当前的工作进度;
git stash
2.git stash pop: 恢复之前保存的工作进度;
git stash pop
3.git stash show -u: 显示最近一次保存的进度与当前目录下文件的区别;
git stash show -u
4.git stash list: 查看保存的所有stash进度;
git stash list
5.git stash show stash@{1} -u: 显示某次的stash进度。
git stash show stash@{1} -u
2018.4.