Right now I have a very large repository with the following commits:
- Latest commit
- A lot of commits here
- First commit
What I want to do is to squash commits 2 and 3 into a single one. I tried interactive rebase, but there are many conflicts and it would take unreasonable amount of time to fix those. And it doesn't make any sense to resolve those conflicts since eventually they will become one commit.
The result would look like this:
- Latest commit
- Initial commit (includes 2 and 3)