我正在尝试删除包含其更改和消息的提交。 我有多个提交消息,例如:
first commit
2nd commit
third commit
fourth commit
fifth commit...
现在,我想删除包含更改和消息的third commit
。
我尝试通过运行以下命令删除第三次提交:
git reset --hard mybranchname~f124555555
其中f124555555
是第三次提交参考代码
但这不起作用...
有人可以帮我吗?
谢谢