My situations looks similar to this this except that my feature branch has a lot more commits
The bug fix which was committed in the meantime also affects my feature branch. This is why I would like to rebase my feature branch to the master.
I tried to do this with git rebase master (being on my feature branch) which ended up in chaos. Due my feature branch has a high count of commits, the rebase takes forever and I keep losing the overview during the rebase process and all its conflicts, with older commits and what so ever.
How would I do this correctly in this situation? What am I doing wrong?
