/ Published in: SVN
This is useful if you do not currently have a trunk/branch structure and would like to move everything into a new trunk.
Expand |
Embed | Plain Text
cd ~/path/to/old/directory svn mkdir new_directory for file in *; do svn move "$file" new_directory; done
Comments
Subscribe to comments
You need to login to post a comment.

*Note: This does not seem to move the .htaccess file (and I assume any other hidden files).
Use the following to move the .htaccess or other file from the root into the new_directory:
svn move .htaccess new_directory