Search code examples
svnvisualsvnvisualsvn-server

How do I access a SVN server remotely?


I set up a VisualSVN server on a Windows machine. How do I access that repository via terminal from a different Ubuntu (Linux) machine?


Solution

  • Use TortoiseSVN for WIndows or SubDiverSVN for Linux -- they are UI based utility. Or install a command-line SVN and perform

    svn list <url_to_your_repository>  //to list the folders
    svn co  <url_to_your_repository>   //to checkout the code