In a file that I am using, I merged two branches one after the other to the master. So I had branch1, branch2 and master. First, I merged branch1 and then branch2. In the final version of the file in master, I am having a messages like
<<<<<<<<HEAD
branch2-messages
========
Branch1-message
>>>>>>>> branch1
branch2-messages is the branch2 specific change to the file and Branch1-message is the branch1 specific change to the file.Why does these messages appear in the final file?.