Reputation: 161
The merge graphs shows the red and violet branches merged back into pink a couple of times. The green branch can now not be merged. Can somebody explain what should have been done after the first merge. Where did it go wrong?
Upvotes: 0
Views: 266
Reputation: 1217
Technically, this will function. Git is always looking for lines within files, so as long as there aren't changes on the same lines of the same files, you'll be good to go. Even if the changes are on the same lines, Git will let you know there's a merge conflict.
But, is it the right way to do things? That depends on the workflow your team agrees upon.
Generally speaking, I would only change a few things:
Upvotes: 1