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 {} \;