goh
goh

Reputation: 29581

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?

Upvotes: 3

Views: 1816

Answers (2)

Nishant
Nishant

Reputation: 55886

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

Upvotes: 2

jamesmortensen
jamesmortensen

Reputation: 34078

You will need to install a subversion client on Ubuntu. Run this on the terminal.

sudo apt-get install subversion

Further information on how to use the client can be found in the Ubuntu Help Section: https://help.ubuntu.com/community/Subversion#Access Methods

Upvotes: 2

Related Questions