LoginSignup
2
3

More than 5 years have passed since last update.

.svnフォルダの一括削除(ver1.6以下)

Last updated at Posted at 2014-01-15

以下2行

windows
> cd 該当ディレクトリ
> for /R %i in (.svn) do rd /Q /S "%i"

mac
$ cd 該当ディレクトリ
$ find . -name .svn -exec rm -rf {} \;

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3