参考:
Git stash 常用命令
1.git stash
: 保存当前的工作进度;
2.git stash pop
: 恢复之前保存的工作进度;
3.git stash show -u
: 显示最近一次保存的进度与当前目录下文件的区别;
4.git stash list
: 查看保存的所有stash进度;
5.git stash show stash@{1} -u
: 显示某次的stash进度。
2018.4.
2023-07-29 13:48:52
1.git stash
: 保存当前的工作进度;
2.git stash pop
: 恢复之前保存的工作进度;
3.git stash show -u
: 显示最近一次保存的进度与当前目录下文件的区别;
4.git stash list
: 查看保存的所有stash进度;
5.git stash show stash@{1} -u
: 显示某次的stash进度。
2018.4.