I have to cleanup a remote/public branch "OLD" because it contain some bad/huge commits.
OLD - simplified graph
(...) -> c234 -> c235(huge to fix) -> c236 -> c237(huge to fix) -> c238 -> c239 -> (...) -> HEAD
To do so I did:
1) I created a "NEW" branch.
2) Get back before first huge commit (c234)
3) Cherry pick all commits before last huge commit. (c236)
4) Then I copied all changed files from "OLD" branch after last huge commit (c237)
5) And finally created many small commits reflecting changes (c235, c237)
NEW now - simplified graph
(...) -> c234 -> c236 -> (many commits reflecting state after c237) -> HEAD
Now in my opinion I have to rebase/cherry-pick all changes made after (c237) on "OLD" into top of the "NEW"
NEW expected - simplified graph
(...) -> c234 -> c236 -> (many commits reflecting state after c237) -> c238 -> c239 -> (...) -> HEAD
I tried before this git-rebase -i but because this was a public repo, it contain many (there is almost 400 commits to HEAD of OLD) merges and from time to time I had to resolve conflicts - witch can take me many days.
Any ideas howto do deal with it.