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.
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.
Use svn switch --relocate old-url new-url .
to convert the default access URL.
From within the working directory of your checked out repository:
svn switch svn+ssh://some.server/path/to/repo .
See the documentation.