Agni
Agni

Reputation: 448

GITHUB branching process - down-merge and up-merge

I need some clarification on the GITHUB. Let suppose we have below branch structure.

enter image description here

Upvotes: 2

Views: 11347

Answers (1)

David Ongaro
David Ongaro

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

Related Questions