I've made a merge a month ago on a repo, then reverted it.
Now it causes me trouble when merging because when I try to merge it deletes some files that has been deleted in the revert, but now I need them. And since the commits that deletes them is more recent than the commit that add them, git delete this files when merging
How can I revert a commit from a month ago that looks like this:
... > merge > revert merge (to delete) > other commit to keep > to keep > to keep > ...
To this:
... > merge > other commit to keep > to keep > to keep > ...
Thanks!