Wednesday, November 16, 2011

Remove SVN Folders Ubuntu 11.04

To remove all SVN folders recursively, run below command in your terminal:
  1. Open Terminal
    ShortCut: CTRL+ALT+T
  2. First open your directory (in my case it is "/var/www/mySite")
    cd /var/www/mySite
  3. Run below command
    find . -name ".svn" -exec rm -rf {} \;
Hope this save your time.