Access to the Subversion Repository
From LNLEpicsWiki
[edit] Access Method
Access to the repositories is organised through the standalone SVN server (using svn://localhost/<project> notation).
[edit] Projects
- target
- All IOC applications for the SPES Target project
[edit] Documentation
To get a working copy of the target project, create an empty directory, cd into it, and type:
svn checkout svn://localhost/target/trunk
In that directory, use
svn status
to see the status of your local changes.
svn commit -m "<your log message"
will commit your changes to the repository,
svn update
will merge any (new) changes from the repository into your working copy,
svn delete <file> svn add <file>
will delete <file> resp. mark <file> for addition at your next commit command.
The SVN Book should have all the remaining questions covered.
For a more friendly graphical interface, use tkcvs or kdiff.
