Recursively clear folder from .svn-directories

Often needed, we put it in here for copy&paste purposes

  1. First, check for .svn-folders in your current directory by entering
    find . -type d -name .svn
  2. Now these can be removed recursively, starting from the current directory with
    rm -rf `find . -type d -name .svn`

 

1 Comment(s)

Skymar

Jun 25
at 19:42

handy

Add your comment

Please keep it polite and on topic. Your email address will not be published.

This is a captcha-picture. It is used to prevent mass-access by robots. (see: www.captcha.net)