Reputation: 448
I need some clarification on the GITHUB. Let suppose we have below branch structure.
Later they down-merged from Development to Dev-2, and finally up-merge from Dev-2 to Development.
Upvotes: 2
Views: 11347
Reputation: 3938
There is no technical obstacle which would prevent this, but you might get nasty merge conflicts if the changes of Dev-2.x are conflicting with changes on develop.
In general it's a better workflow to merge in the changes from develop regularly into your individual working branches to make sure your changes still integrate nicely. In this way conflicts can be resolved early or even completely avoided because the work isn't based on an outdated source.
Of course this also depends on the nature of your project and how work is split up. If all changes are orthogonal then merge conflicts shouldn't be an issue.
Upvotes: 4