I have a Php project in Laravel framework.
Initial CODE STATE : A
One month later , another developer joins me.
After 6 months ,
My CODE STATE : A + B
His CODE STATE : A + C
B and C have many common files so we are expecting conflicts during git merge. We now wish to have a code base : A + B + C
My current status/strategy-in-progress : I have set up a remote git repository with code A + C and local git repository with A + B .
how to best merge remote git repository(A+B) with my local git repository(A + C) so that i have A+B+C on the both local and remote git repo?
Please assist!