SVN and diffs
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 215
- Joined: Mon Apr 30, 2007 10:00 pm
- Location: Bulgaria
SVN and diffs
How to see diffs from files into SVN?? I need that for upgrading my server!
- Aikimaniac
- L2j Inner Circle
- Posts: 3048
- Joined: Sun Aug 07, 2005 11:42 pm
- Location: Slovakia
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: SVN and diffs
NO, right-click -> compare to ->latest from repository OR team->synchronize with repository
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
-
- Posts: 215
- Joined: Mon Apr 30, 2007 10:00 pm
- Location: Bulgaria
Re: SVN and diffs
trunk/L2_GameServer/java/com/l2jserver/gameserver/model/actor/knownlist/AttackableKnownList.java (modified) (view diffs)
I mean
videw diffs is not working on trac...

I mean
videw diffs is not working on trac...


- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: SVN and diffs
that's TRAC and afaik ThePhoenixBird said he'll make an announcement sometime soon about that.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
-
- Posts: 215
- Joined: Mon Apr 30, 2007 10:00 pm
- Location: Bulgaria
Re: SVN and diffs
ok guys,
do you know what changes are made in
java/com/l2jserver/gameserver/network/serverpackets/ExBasicActionList.java
on adding my patches, I get errors on compile
and second one is maybe becouse of me.. but not sure
please help me..., someone
do you know what changes are made in
java/com/l2jserver/gameserver/network/serverpackets/ExBasicActionList.java
on adding my patches, I get errors on compile
Code: Select all
cannot find symbol [javac] symbol : constructor ExBasicActionList(com.l2jserver.gameserver.model.actor.instance.L2PcInstance) [javac] location: class com.l2jserver.gameserver.network.serverpackets.ExBasicActionList [javac] final ExBasicActionList actionList = new ExBasicActionList(player);
Code: Select all
168: incomparable types: boolean and int [javac] if (player.isOnline() == 0 && player._haveFlagCTF)
- jurchiks
- Posts: 6769
- Joined: Sat Sep 19, 2009 4:16 pm
- Location: Eastern Europe
Re: SVN and diffs
player.isOnline() is a boolean itself, you don't need to compare it to zero.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.