When I do a git rebase [remote branch name]
, everything is fine, however, I override some of the code from the remote branch. Since my commits are coming on top of the head of the remote branch's. The rebase process does an auto-merge
according to the logs.
How do I avoid the auto-merge, or what is the best approach to take in this scenario?
Some context: I forked off someone else's branch and would like to receive their updates. The rebase puts my updates on top of theirs, overriding maybe two lines of code because it auto-merges