开发者

Migrate SVN directory from standard to SSH

开发者 https://www.devze.com 2023-01-04 01:23 出处:网络
I have an SVN repo that I want to change to work over SSH, but do开发者_开发百科n\'t want to checkout again. I have added the appropriate tunnels, but when I go to checkout, it still goes over HTTP.Us

I have an SVN repo that I want to change to work over SSH, but do开发者_开发百科n'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.

0

精彩评论

暂无评论...
验证码 换一张
取 消