Вопрос

My code is breaking because every time I try to recover from a previous revision of my code Subclipse keeps adding this weird notation/conments into my Javascript.

e.g.

    if (profanityCheck() == false)
<<<<<<< .working
    {
        var inputData = "";
        var newData = new Array();
=======

How do I stop it doing this?

Thanks

Это было полезно?

Решение

That generally indicates there's a conflict between the version of the file in your workspace and the version from the SVN you're trying to switch to.

To fix it Right-click -> Team -> Mark resolved, then select the option that makes the most sense (probably use the incoming version of the file).

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top