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 中,我会撤消最后一次提交,这是他们撤消 git 中最后一次提交的任何方式。
你可以这样做:
git reset --soft HEAD~
这不会删除新文件或文件中的更改。它只会恢复提交,因此提交从未发生过。如果您希望更改不在文件中,请--hard使用--soft.
--hard
--soft
如果一切都在本地完成,只需将分支重置为上一个提交。