CAPD RedHom Library
|
The CAPD packages are split among four Subversion repositories:
repository | packages |
---|---|
capd | capdAlg, capdAux, capdExt, capdMake |
capdDynSys | capdDynSys version 3.0 |
capdDynSys4 | capdDynSys version 4.0 |
capdRedHom | capdRedHom |
capdExtHom | capdExtHom |
The source code is available from public repository. The access to repositories is read-only: one can checkout and update the sources but cannot submit any local changes.
To checkout the latest version of the code:
svn co https://svn.capdnet.ii.uj.edu.pl/capd/
cd capdand checkout one or both subprojects
svn co https://svn.capdnet.ii.uj.edu.pl/capdDynSys4
svn co https://svn.capdnet.ii.uj.edu.pl/capdRedHom,
svn co https://svn.capdnet.ii.uj.edu.pl/capdExtHomThe two last steps are optional.
Developers of the CAPD should work with repositories via ssh connection to the server. We suggest to use login with a public key.
SVN server is part of CAPDNET Cloud. Description and configuration can be found in CAPDNET Cloud Documentation.
To checkout the latest version of the code:
svn co svn+ssh://<user>@repos.capdnet/var/svn-repos/capd
cd capd
svn co svn+ssh://<user>@repos.capdnet/var/svn-repos/capdDynSys4
svn co svn+ssh://<user>@repos.capdnet/var/svn-repos/capdRedHom
svn co svn+ssh://<user>@repos.capdnet/var/svn-repos/capdExtHomThree last steps are optional, but capdRedHom requires capdExtHom package.
Under construction.
To commit changes you can do the following
svn status | shows changes. |
svn update | updates your copy to the latest version. |
svn add newfile.cpp | adds newfile.cpp to version control (it does not submit it). |
svn commit file -m "Commit message" | commits ''file'' to the repository. If file name is not given it submits all added and changed files. |