使用重置头恢复提交

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用重置头恢复提交相关的知识,希望对你有一定的参考价值。

当我尝试时,如何在一个存储库中:git reset head~1,这将删除最新的提交。在不同的存储库(github)上,它给我以下错误消息:

fatal: ambiguous argument 'head~1': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
答案
git reset HEAD~1

HEAD,而不是head

或者只是@

git reset @~1

以上是关于使用重置头恢复提交的主要内容,如果未能解决你的问题,请参考以下文章

如何从片段外部清除/重置地图?

如何将文件重置或恢复到特定版本?

Git重置(撤消、丢弃)文件变更

Git回滚到历史节点(SourceTree篇)

Git回滚到历史节点(SourceTree篇)

git 重置为上一次提交,然后推送