(Go to Japanese Help/Source Code page)
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.
Project members can use the following command lines to gain access.
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.
With Subversion write access is possible by SSH and by HTTPS.
svn checkout https://svn.sourceforge.jp/svnroot/<projectname>/<path>
svn checkout svn+ssh://<loginname>@svn.sourceforge.jp/svnroot/<projectname>/<path>
Git write access is possible using SSH.
git push <loginname>@git.sourceforge.jp:/gitroot/<projectname>/<repositoryname>