SVN Usage
Hi,
I want to give a slight overview of SVN and how to use it. First of all there are three ways to access SVN: svn, svn+ssh and via http(s). Sourceforge uses WebAccess, that means you can also browse the repository online with your favorite browser, just click on this link.
Subversion uses three toplevel directories named trunk, branches and tags. Trunk can be compared to CVS Head, branches and tags are self-explanatory, I think 
To checkout the source simply type:
svn co https://jnode.svn.sourceforge.net/svnroot/jnode/trunk/ foo
which creates a new directory called foo (Mind the space between "trunk/" and "foo"!) . In this directory all stuff of the repository in /jnode/trunk will be copied to foo/ on your local computer.
svn up|add|commit as expected.
New to subversion is copy, move and delete. If you copy or move a file, the history is also copied or moved, if you e.g. delete a directory it will not show up anymore if you do a new checkout.
If you want to make a branch from a version currently in trunk you can simply copy the content from trunk/ to branches/, e.g. by:
svn copy https://jnode.svn.sourceforge.net/svnroot/jnode/trunk/ https://jnode.svn.sourceforge.net/svnroot/jnode/branches/my-big-change-branch/
I think that's the most important for the moment, for more information have a look at the SVN Handbook located here.
Btw, for using SVN within eclipse you have to install subclipse located here.
I hope that helps, good luck 
Peter
(edited for corrections by Ewout)
(Edited by Fabien to reflect new sf svn server name : it switched from svn.sourceforge.net to jnode.svn.sourceforge.net)



Recent comments
3 hours 18 min ago
1 day 19 hours ago
1 day 20 hours ago
2 days 3 hours ago
2 days 14 hours ago
3 days 2 hours ago
3 days 3 hours ago
3 days 4 hours ago
3 days 15 hours ago
3 days 20 hours ago