- 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 -
HLRS GForge: Difference between revisions
(→Usage) |
(→Usage) |
||
Line 21: | Line 21: | ||
== Usage == | == Usage == | ||
{{Note | {{Note | ||
| text = The HLRS GForge server is accessible from all HLRS platforms. | | text = The HLRS GForge server is accessible from all HLRS platforms. | ||
}} | }} | ||
=== | === SVN usage === | ||
The online home of [http://svnbook.red-bean.com/ 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/$ | 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 | svn ci | ||
In order to update your local copy use the update command: | |||
svn up | svn up | ||
Files and directories can bw removed with | |||
svn rm $filename | |||
and added with | |||
svn add $filename | |||
With the command | |||
svn rm $ | |||
svn add $ | |||
svn help | svn help | ||
the help page of SVN is displayed. | |||
== See also == | == See also == |
Revision as of 11:40, 1 March 2010
GForge is a free software fork of the web-based project-management and collaboration software originally created for SourceForge. GForge is licensed under the GNU General Public License. GForge provides project hosting, version control (CVS and Subversion), bug-tracking, and messaging. |
|
Registration
Create an account
In order to register please fill in the registration form.
Create a project
As soon as your account is activated you can login to the HLRS GForge Server (HLRS GForge Login Page). Now you can join already existing projects or create your own projects. On "MyPage" click on "Register project" or follow the link to the project registration and fill in the form.
Usage
SVN 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 bw removed with
svn rm $filename
and added with
svn add $filename
With the command
svn help
the help page of SVN is displayed.