Subversion
The Robotics Team uses Subversion for version control. Our primary repository is publicly viewable, while the administrative and historic (legacy) repositories are only available to team members.
Repositories
Note that all repositories are only available via the HTTPS protocol. As this server uses a self-signed SSL certificate you will get a warning the first time you connect to it, as well as every successive time unless you select "permanent" to trust the certificate.
- Primary: https://rhitrobotics.org/svn/rhrt
- Administrative: https://rhitrobotics.org/svn/administrative
- Historic: https://rhitrobotics.org/svn/historic
Using Subversion
Windows users will want to use Tortoise SVN to access the repositories.
Under Linux, repositories can be checked out using the following command, where <repository-url> is one of the URLs listed above:
svn co <respository-url>/trunk
This will check out the entire repository into a folder in the current directory with the same name as the last segment of the URL. You can specify the folder to check out into as an additional argument. For more on the svn command, run svn help.
For example, to check out the software repository:
svn co https://rhitrobotics.org/svn/rhrt/trunk/software
This will check out the contents of the software repository to a folder named "software" in the current directory.