We have a long running feature
branch created from develop
. A few people have been working on feature
(work on sub branches created from feature
and merge back to it) for a month, but never sync feature
with develop
.
I'm trying do git rebase develop
on feature
today, there are too many conflicts, it seems for each new commit git rebase creates, there are always conflicts, however many of them are not a problem if only comparing the first and last commit.
What's the best way to sync feature
with develop
in this case?
For a long running feature branch like this, what's the best way to keep them in sync? (If I do git rebase develop
very often and keep resolving conflicts, is it good ?)