MAST

Subversion use on MAST began early 2007. Repositories and documentation for EFIT, IDAM and Specview can be viewed via the MAST external website , via Fusion SVN Pages in the home menu. Team members with access rights can check out and work on these and other projects there with

$ svn co https://mastweb.fusion.org.uk/svnroot/<repos>
Note https, not http.

Sandbox

Sandbox is a scratch repository provided to allow you to play with Subversion over the network. There are no access controls; anyone can read and write anything, so you can become familiar with group working with Subversion. To avoid wasting server and backup space, don't put large files here. Remember that files stay in the repository when you svn rm them from a working copy.

Don't put anything here which you want kept. The repository will be cleaned out periodically. When it is, any working copies you create will no longer connect, and you should delete them.

You can check out a working copy of the whole repository with

$ svn co https://mastweb.fusion.org.uk/svnroot/sandbox
To maintain a semblance of order, we suggest you add a subdirectory with your username to the top of the repository and work in that. You can do that without checking out the whole repository first by doing
$ svn mkdir <username> https://mastweb.fusion.org.uk/svnroot/sandbox
Then you can check out and work on just your part of the repository
$ mkdir sandbox
$ cd sandbox
$ svn co https://mastweb.fusion.org.uk/svnroot/sandbox/<username>