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


You need to login to view comments.