Move entire folder with SVN


/ Published in: SVN
Save to your folder(s)

This is useful if you do not currently have a trunk/branch structure and would like to move everything into a new trunk.


Copy this code and paste it in your HTML
  1. cd ~/path/to/old/directory
  2. svn mkdir new_directory
  3. for file in *; do svn move "$file" new_directory; done

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.