- Infos im HLRS Wiki sind nicht rechtsverbindlich und ohne Gewähr -
- Information contained in the HLRS Wiki is not legally binding and HLRS is not responsible for any damages that might result from its use -

SVN

From HLRS Platforms
Revision as of 14:40, 6 April 2016 by Hpcchris (talk | contribs) (→‎Cray XT5m special)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
In software development, Subversion (SVN) is a version-control system initiated in 1999 by CollabNet Inc. Developers use Subversion to maintain current and historical versions of files such as source code, web pages, and documentation. Its goal is to be a mostly-compatible successor to the widely used Concurrent Versions System (CVS).
Developer: CollabNet, Elego, WANdisco
Platforms:
Category: Revision Control
License: Apache License
Website: SVN homepage


Usage

The online home of Version Control with Subversion provides detailed information about all SVN commands. You can checkout your SVN project like this:

svn co --username $username https://svn.gforge.hlrs.de/svn/$projectname $path

If $path is not provided a new subdirectory $projectname will be created. You can upload changes like this:

svn ci

In order to update your local copy use the update command:

svn up

Files and directories can be removed with

svn rm $filename

and added with

svn add $filename

With the command

svn help

the help page of SVN is displayed.

Hazelhen special

To use svn on Hazelhen load the corresponding module

module load tools/svn


See also

External links