我在 git 中管理的项目中犯了一些错误:
在这里阅读一些指南和一些帖子我做了这个命令:
git reset --hard a77ec5f
commint a77ec5f 是最后一个“好”提交
在此之后,这些文件就在我的本地副本中,但是如果我这样做git status
:
$ git status
# On branch dev
# Your branch is behind 'origin/dev' by 4 commits, and can be fast-forwarded.
#
nothing to commit (working directory clean)
现在,我如何告诉服务器我落后的 4 个提交要删除?谢谢