I created a file, file.txt, and then added one line with my commit to the master branch with the default text
"-----Text--------"
Another developer on the repository, MrA, cloned the source and edited his work like this:
"-----Text--------"
Line added by MrA;
MrA commits to the remote repository in the server.
At the same time MrB also modified the same file like this
"-----Text--------"
Line added by MrB;
When MrA commits there's no problem since there's no other changes before his.
But when MrB wants to commit it has an message error saying there is a conflict. When MrB tries to pull he gets an error message that you move file.txt or stash it to merge the content.
What should I do to resolve this conflict?