当我们运行 'git revert HEAD~9' 时,出现以下错误:
$ git revert HEAD~9
error: could not revert 45ebde6... AC: added stat summary function
hint: after resolving the conflicts, mark the corrected paths
hint: with 'git add <paths>' or 'git rm <paths>'
hint: and commit the result with 'git commit'
问题是,在我们解决冲突并提交之后,又会再次git revert HEAD~9
引发完全相同的冲突。我们进入了这个奇怪的循环,并且永远不会使用git revert' and
commit` 去任何地方(只是增加了垃圾提交!)。如何解决这个问题?谢谢。