tags:

views:

39

answers:

2

Hi,

I have an SVN repo that I want to change to work over SSH, but don't want to checkout again. I have added the appropriate tunnels, but when I go to checkout, it still goes over HTTP.

+3  A: 

Use svn switch --relocate old-url new-url . to convert the default access URL.

Amardeep
A: 

From within the working directory of your checked out repository:

svn switch svn+ssh://some.server/path/to/repo .

See the documentation.

jsumners
@jsumners: typo in the URL, should be `svn+ssh`
ryanprayogo
Fixed it. Thank you.
jsumners