So we ran into a problem where if you rebase your branch on top of master and them PUSH, the other guys who was working on your branch does a pull and gets all kind of merge conflicts b/c the rebase has rewritten history and the commits are not the same as they were on the branch. Is there any way around this, assuming that the other guy has a bunch of changes he wants to push to the branch?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can check the "Recovering From Upstream Rebase" section of the git rebase man page.
(if his changes are on a separate branch) or:
|
|||
|
|
|
Others should be able to rebase the branch after your push by using
|
|||
|
|