svn? Install "precompiled" files?

Discussion in 'Technical' started by edge, Mar 3, 2011.

  1. edge

    edge Active Member Moderator

    I would like to download (and install) something through svn.

    The owner of the file(s) gave me a svn link (something like: svn.domain.com/aa/branches/file )

    Now how do I access this?
    My Debian Lenny version gives me a "No such file or directory" when I try to access this by: svn.domain.com/aa/branches/file
     
  2. Rudika79

    Rudika79 New Member

    Hi,

    First you need install subversion program in your debian linux.

    Code:
    apt-get install subversion
    You need to make one directory for your files.
    After you need to check out your file in your directory

    Code:
    mkdir ~/aa
    svn checkout http://svn.domain.com/aa/branches/file ~/aa
    Rudolf
    http://www.bodocsi.net
     

Share This Page