Subversion: changing the target repo of the working directory

I know other RCS are better, but ...

I moved the SVN repository from the file: /// path / to / repo to http://host.name/svn/repo but there is a working directory (checkout out from file: //) with changes that want to make a connection to http- address.

How then can I change the repo that the working directory will work with upon release svn commit?

I would rather do this than verify that the new copy and synchronization are changing locally. It’s also convenient to know the future.

+2
source share
3 answers

It looks like the command svn switchis what you need:

svn switch --relocate FROM_PATH TO_PATH
+9
source

SVN switch , . ,

svn: 'TO_PATH' uuid '47378e3f-18ec-4688-a92c-46777710830a', WC 'c6f1d636-074b-0410-81ee-9b5c3d6808e7

import .

+4

You need to run the command switch --relocate FROM TO [PATH...].

+2
source

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


All Articles