How to use SourceForge?

Ok, I want to use SourceForge to host my source for the program, but I have no idea how to use SVN or CVS. I tried to look at the tutorials, but they all seem to be focused on extracting the source, not adding it to it. At the moment, the repository is empty (there is no source), so how do I add the source files? Thank.

+3
source share
4 answers

use

svn import **folder** -m "comment here"

to import a folder into your repository (to run).

you can also use

svn add **folder**

to add files and folders to the repository, use

svn commit  -m "comoment here"

But the easiest way would be to use a GUI application such as tortoiseSVN for windows and svnX for OS X if you are not familiar with SVN.

+1
svn import file url -m "Comment Goes here"

, , file, url url, .

SVN

/ , , , .

svn import file --username bob --password bobiscool url -m "Comment"

-m, gnarly, nano- , -m.

+1

, SVN-, TortoiseSVN, → "Repo Browser"

https://svn.code.sf.net/p/{Your Project Name Goes Here}/code/trunk

.

, !

+1

Subversion, SVNBook, Subversion . , . SVNBook - SVN Subversion.

, Subversion :

0

All Articles