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”
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
svn move does not support wild cards. In the SVN redbook they state 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
You therefore have to call svn move for each file in the directory.
I suggest you to write a short script that does this for you or try to use one of the Subversion GUI tools.