Subversion (SVN) sometimes clutter our source directory by creating .svn folder in each folder or sub folder that we version control.
The easiest way to erase them is by using a bash command:
1 | find . -name ".svn" -type d -exec rm -rf {} \; |
Subversion (SVN) sometimes clutter our source directory by creating .svn folder in each folder or sub folder that we version control.
The easiest way to erase them is by using a bash command:
1 | find . -name ".svn" -type d -exec rm -rf {} \; |