This is the top of OrcaWare Technology's Subversion repository. The top level directory contains a directory for each separate project hosted in the repository. Underneath each project are three directories: trunk/ ......... The latest development sources. When people say "Get the head of trunk", they mean the latest revision of an entire project directory located in trunk/, such as find_badblocks/trunk or orca/trunk. branches/ ...... Various development branches. Typically a branch contains a complete copy of a project's directory in trunk/, even if the changes are isolated to one subdirectory in the project. Note that branch copies are generally removed after they've been merged back into trunk/, so what's in branches/ now does not reflect all the branches that have ever been created. tags/ .......... Snapshots of releases. As a general policy, we don't change these after they're created; if something needs to change, we move it to branches and work on it there. When checking out the source code on this server, please be extra careful to check out only the package you need, otherwise you may check out the entire repository and fill up a minimum of 300 Mbytes on your disk and take forever to check out. Here are some sample commands: Check out the HEAD, that is the latest working copy, of the Orca package: svn checkout http://www.orcaware.com/svn/repos/orca/trunk/ orca Check out Orca tagged at version 0.27: svn checkout http://www.orcaware.com/svn/repos/orca/tags/0.27/ orca-0.27 These are the commands to avoid, as they will check out everything underneath the specified URL. Be careful :) : svn checkout http://www.orcaware.com/svn/repos/ svn checkout http://www.orcaware.com/svn/repos/orca/ svn checkout http://www.orcaware.com/svn/repos/orca/tags/