SVN: moving files from a folder

How to move all files (including .htaccess, etc.) using ?svn move https://example.com/repos/123/* https://example.com/repos/

It says: "svn: Path https://example.com/repos/123/*does not exist in revision NN"

+5
source share
2 answers

svn move does not support wild cards. In the SVN editor, they indicate that this command can "Move and schedule a file or directory":

http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.move.html

Therefore, you need to call svn move for each file in the directory.

I suggest you write a short script that will do this for you or try to use one of the Subversion GUI tools.

+4

, URL- .

https://example.com/repos/123/. svn move foo\123\* foo\ .

+2

All Articles