How can I access the SVN server remotely?

I installed the VisualSVN server on a Windows machine. How to access this repository through a terminal from another Ubuntu (Linux) computer?

+3
source share
2 answers

Use TortoiseSVN for WIndows or SubDiverSVN for Linux, an interface-based utility. Or install the SVN command line and run

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

You will need to install the Subversion client on Ubuntu. Run it on the terminal.

sudo apt-get install subversion

, , Ubuntu: https://help.ubuntu.com/community/Subversion#Access

+2

Source: https://habr.com/ru/post/1783567/


All Articles