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
  • 277,661
  • 50
  • 283
  • 320
gileneusz
  • 1,299
  • 8
  • 24
  • 49

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
  • 277,661
  • 50
  • 283
  • 320