Git helps in resolving conflicts by adding conflict-resolution markers to the files
that have conflicts, so you can open them manually and resolve those conflicts.
Resolving Conflicts
Your file will contain sections that have markers and the conflicted file will look
something like:
<<<<<<< HEAD:index.html
contact : email.support@example.com
=======
please contact us at support@example.com
>>>>>>> iss53:index.html
* you can then stage your updated files and commit to complete the merge.