[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[Subclipse-users] I found a bug?about resolve conflict~

From: gaohongyan <ghyghost_at_sohu.com>
Date: Mon, 9 Sep 2013 09:22:07 -0700 (PDT)

(1)myeclipse1 create java file content:
package test;

public class Test {

        public static void main(String[] args) {
                System.out.println("1");
                System.out.println("2");
                System.out.println("3");
                System.out.println("4");
                System.out.println("5");
                System.out.println("6");
                System.out.println("7");
                System.out.println("8");
                System.out.println("9");
                System.out.println("10");
        }

}
commit it to test1 repository
(2)checkout test1 repository to desktop test22 directiroy.
(3)test22 import to myeclipse2 and edit java file content:
package test;

public class Test {

        public static void main(String[] args) {
                System.out.println("1");
                System.out.println("2 2");
                System.out.println("3 2");
                System.out.println("4 2");
                System.out.println("5");
                System.out.println("6");
                System.out.println("7");
                System.out.println("8");
                System.out.println("9");
                System.out.println("10");
        }

}
commit to test1 repository.
(4)show myeclipse1 Test.java file edit it content:
package test;

public class Test {

        public static void main(String[] args) {
                System.out.println("1");
                System.out.println("2");
                System.out.println("3");
                System.out.println("4 1");
                System.out.println("5 1");
                System.out.println("6 1");
                System.out.println("7");
                System.out.println("8");
                System.out.println("9");
                System.out.println("10");
        }

}
and invoke Update menu.
content change bottom:
package test;

public class Test {

        public static void main(String[] args) {
                System.out.println("1");
<<<<<<< .mine
                System.out.println("2");
                System.out.println("3");
                System.out.println("4 1");
                System.out.println("5 1");
                System.out.println("6 1");
=======
                System.out.println("2 2");
                System.out.println("3 2");
                System.out.println("4 2");
                System.out.println("5");
                System.out.println("6");
>>>>>>> .r4
                System.out.println("7");
                System.out.println("8");
                System.out.println("9");
                System.out.println("10");
        }

}

(5)invoke "maked resolved" menu,checked "Resolve conflicts in local file with my changes" option, Test.java file content change bottom:
package test;

public class Test {

        public static void main(String[] args) {
                System.out.println("1");
                System.out.println("2");
                System.out.println("3");
                System.out.println("4 1");
                System.out.println("5 1");
                System.out.println("6 1");
                System.out.println("7");
                System.out.println("8");
                System.out.println("9");
                System.out.println("10");
        }

}
(6)My question is, why don't you into the following this?
package test;

public class Test {

        public static void main(String[] args) {
                System.out.println("1");
                System.out.println("2 2");
                System.out.println("3 2");
                System.out.println("4 1");
                System.out.println("5 1");
                System.out.println("6 1");
                System.out.println("7");
                System.out.println("8");
                System.out.println("9");
                System.out.println("10");
        }

}
(7)Thank you lot~

------------------------------------------------------
http://subclipse.tigris.org/ds/viewMessage.do?dsForumId=1047&dsMessageId=3064222

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subclipse.tigris.org].
Received on 2013-09-09 18:40:15 CEST

This is an archived mail posted to the Subclipse Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.