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 --merge
我丢失了对某些文件的最新修改,如何撤消最后一个操作?
您可以查看您的 reflog 以找到您之前的提交:
git reflog
找到之前的提交后,复制 sha-1 哈希并
git reset <commit sha-1> --hard
虽然,如果您丢失的是未提交的修改,那么它们就丢失了。