RoboCompSvn
From robocomp
Contents |
RoboComp software repository
Getting the source
The source code of RoboComp is available from a Subversion repository located at SourceForge.net: https://robocomp.svn.sourceforge.net/svnroot/robocomp. In order to fetch the code you will need a Subversion client. If you are using a modern GNU/Linux distribution, there is usually a subversion console client available as a package named 'subversion'. Alternatively, you can also get the code from the robocomp.tar.gz tarball that you will find in the "Browse SVN" section of the project page, but you will be unable to commit changes or update the repository.
To get the whole repository into a directory named robocomp, using the console client:
| svn co https://robocomp.svn.sourceforge.net/svnroot/robocomp robocomp |
Of course, you can also check out the repository by specifying its URL to a graphical client such as:
- KSvn
- eSvn
- RapidSVN
Updating the repository
By typing the following command within your copy:
| svn up |
the repository subtree (files and (sub)directories within the current directory) will be updated.
Commiting changes
Only project developers can commit changes made to the repository. By typing the following command within your copy:
| svn ci |
the changes made to repository subtree (files and (sub)directories within the current directory) will be commited. SVN write permission is needed to commit changes.
