Develop and Download Open Source Software

Recent Changes

2012-05-03
2012-04-18
2012-03-08

Wiki Guide

Sidebar

>>SourceForge.JP general help

(Go to Japanese Help/Source Code page)

Source Code Help

A repository is made available for each project to manage source code. The source code management systems that can be used at present are Git, CVS and Subversion(SVN).

Anybody, from general users, can browse the repository from the project's web interface. Please see the repository page via 'Source Code' -> 'Guide' -> 'Browse (Subversion/Git) Repository.' Read-only access is also made available via anonymous pserver.

The Project Admin is automatically given SSH access to the project via Git/CVS/SVN repository. Please register your SSH public access key in User Settings. SVN can also be accessed through HTTPS.

For further details please see the following documents.

Command examples (Writing)

Project members can use the following command lines to gain access.

CVS

CVS write access is only possible by SSH. For example 'checkout' ('checkout' can be abbreviated 'co') is done as follows:

export CVS_RSH=ssh
cvs -z3 -d:ext:<loginname>@cvs.sourceforge.jp:/cvsroot/<projectname> co <module>
When the project is displayed, enter SSH pass-phrase.

Subversion

With Subversion write access is possible by SSH and by HTTPS.

  • HTTPS
    svn checkout https://svn.sourceforge.jp/svnroot/<projectname>/<path>
    
  • SSH
    svn checkout svn+ssh://<loginname>@svn.sourceforge.jp/svnroot/<projectname>/<path>
    

Git

Git write access is possible using SSH.

git push <loginname>@git.sourceforge.jp:/gitroot/<projectname>/<repositoryname>


SourceForge.JP is a Japanese version of SourceForge.net. For developments that are not related to Japan, we recommend you to use SourceForge.net.