Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 从 git reset --hard 中恢复?
我第一次使用git add .,但它添加了一些我不想包含在存储库中的文件。
git add .
所以我git reset --hard HEAD在提交更改之前跑了。有没有办法恢复这些变化?
git reset --hard HEAD
你没有。这就是为什么我总是建议使用
git stash -u
获得相同的效果,但您可以撤消该操作。