以下2行
windows
> cd 該当ディレクトリ
> for /R %i in (.svn) do rd /Q /S "%i"
mac
$ cd 該当ディレクトリ
$ find . -name .svn -exec rm -rf {} \;
Go to list of users who liked
More than 5 years have passed since last update.
以下2行
windows
> cd 該当ディレクトリ
> for /R %i in (.svn) do rd /Q /S "%i"
mac
$ cd 該当ディレクトリ
$ find . -name .svn -exec rm -rf {} \;
Register as a new user and use Qiita more conveniently
Go to list of users who liked