标签:恢复 提交 查看 历史 如何 sof 没有 res git
git checkout . #本地所有的修改,没有提交的,都返回到原来的状态
git stash #把所有没有提交的修改暂存到stash里面。可用git stash pop恢复。
git reset --hard HASH #返回到某个节点,不保留修改。
git reset --soft HASH #返回到某个节点,保留修改。
git log #可以查看 git commit 的历史记录及其 HASH ID
标签:恢复 提交 查看 历史 如何 sof 没有 res git
原文地址:https://www.cnblogs.com/chenjo/p/11398357.html