svn - How to move a folder from one repo to another repo? -


I tried to move a folder from one repo to another repo and followed the steps given below.

Dump a special folder in SVN

  svnadmin dump repo1 | Svndumpfilter repo1 / branches / folder1 / & gt; Folder1.dump   

to restore the dump

  svnadmin load repo2 & lt; Folder1.dump   

It has been successfully loaded but I can not list the contents in the new repo if I check with the new repo, it works.

Could you please inform how to list the contents of the new repo?

Thank you.

to list new repo content

svn list As the local host: // path_to_repo2 may need to be used

Does this help?

Nicholas

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -