I have a code source that has 3 branches to it:
master
Branch 1
Branch 2
I'm working on Branch 2
while another programmer is working on Branch 1
.
I have recently pushed my changes to my branch after having pulled any changes locally. Then I merged my branch with the master.
I'm now trying to merge his branch with the master but get a HUGE list of conflicts. Mostly things I added and synced to the master are conflicting with lines he added in the same files.
How do I decide which changes to keep of his so I can merge it all and bring it all up to date?
I tried creating a pull request inside bitbucket but couldn't get the hang of it. I tried inside that pull request editing X files and placing the Code I knew was good there, but the conflicts remained after edit.