Search code examples
svnrepositorycvssourceforge

How to use SourceForge?


Okay, I want to use SourceForge to host my source for a program, but I have no idea how to use SVN or CVS. I tried looking at tutorials, but they all seem to be oriented on retrieving source, not adding to it. As of now, the repository is empty (no source there), so how do I add my source files? Thanks.


Solution

  • use

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

    to import a folder into your repository (to start one).

    you can also use

    svn add **folder**
    

    to add files and folders to repository then use

    svn commit  -m "comoment here"
    

    But the easiest way would be to use a GUI application, like tortoiseSVN on windows and svnX on OS X if you're not familiar with SVN.