Accessing Subversion Repositories

Access

Although we are avid supporters of Open-Source, some of our source code repositories are only accessible to specific clients because of their choice to keep the code confidential. Additionally, write access to source code repositories is not avaliable to the general public. In these cases you will need to be issued an account.

Subversion URL

To access the Subversion source code repositories you need to know the name of your project. Then the Subversion URL will be:

https://cauldrondevelopment.com/svn/<project>/

Subversion Client Software

To access subversion repositories you first need to install a subversion client. Unix or Linux based systems usually use the command line subversion client provided by your OS. For example on Ubuntu you can install the package with:

sudo apt-get install subversion
.

On Windows you can install the package TortoiseSVN, a free Subversion client. It can be downloaded from here:
http://tortoisesvn.net/downloads

Subversion Checkout

To check out code from a subversion repository you will need a login name and password. Run the following command:

svn co --username <login> \
  https://cauldrondevelopment.com/svn/<project>/

Enter your password when requested.

Subversion Update

To update a previously checked out project go to the directory you want to update and run:

svn update

More Information

More information about Subversion can be found here: