Home > Tools / Utilities > Delete .svn folders and subversion files to migrate subversion repository

Delete .svn folders and subversion files to migrate subversion repository

It may be a requirement to clean up subversion related files (like when we move from subversion to another version control system which does not support importing history from subversion). The below command can be used in Linux (Ubuntu) to do the same.


find -name "\.svn" -exec rm -rf {} \;
  • Share/Bookmark
Categories: Tools / Utilities Tags: ,
  1. No comments yet.
  1. No trackbacks yet.