0

Recently I had a merge conflict in git. After using some git commands I managed to resolve those conflicts, so my git gives a message that all is ok and up-to-date with branches and with production master. So I was happy that I resolved all conflicts. However - on my production page I noticed strange addons:

<<<<<<< HEAD 

MAIN PAGE CONTENT

=======
>>>>>>> branch

How can I remove them?

Mureinik
  • 297,002
  • 52
  • 306
  • 350
gileneusz
  • 1,435
  • 8
  • 30
  • 51

1 Answers1

1

Git plants these in the text when a merge conflict occurs. Just use your text editor (or IDE) to remove them, add the file and commit it.

Mureinik
  • 297,002
  • 52
  • 306
  • 350