For one of my apps I was thinking about implementing branch/merging. I don't understand how to merge without conflicts in some scenarios. Lets take this for example.
Root writes some code. A, B and C pulls from him and adds features. C is done so A and B pull/merge from it. I believe it works by comparing their own against C using root as the base. Now A and B write more features and finish.
Now what happens if I pull from A then pull from B? Their base is root, they both pulled from C so the same lines are edited. How does it know if it is a conflict or not? What if I edit a line C wrote then pull from B? I guess that would be a conflict. Now my last question is What happens if A and B shuffle the location of function after pulling from C? I guess it now comes down to how good the dif recognition is but im unsure how one can pull from both A and B without conflicts