Domanda

I tried merging Develop Branch into master and now getting Errors while Smoke Testing.

This is driving me crazy. Things like

>>>>>>>>>>>>> HEAD

>>>>>>>>>>>>> Develop

AND

=======

are appearing in the code Which are creating a havoc while even deploying.

How do I get rid of these comments and Github headers. My Develop branch is still intact and working fine. The Master branch is driving me merge and pull etc etc to no rescue, Please help. Thanks in advance. Smoke Testing in Smokes.

It's all Javascript btw.

È stato utile?

Soluzione

Those are not comments, those are merge conflicts that happened because you tried to merge a part of a file that was edited differently in those two branches.

Since you are using git, you should read a little about it and its merging tool, and fix the file properly before deploying. Try to read about merge conflicts in the git documentation: http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top