I am trying to modify commits from before a merge where I had to solve conflicts (especially, I want to squash a new commit into one before the merge, but just rewriting commit messages lead to the same issue).
When I use:
git rebase -i --rebase-merges SHA~1
I have to resolve the conflicts of the merge again, this is really time consuming and I don't understand why the conflicts appear again.
Is there a way to modify commits before a merge with conflicts without having to resolve the conflicts again ?