Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コマンドを実行して、macosx 内のすべての .svn ファイルを削除したいと考えています。
ディレクトリからディレクトリごとに削除することは可能ですか、それともより良いですか?
どうやってやるの?
どうも
findSubversion メタデータ フォルダーを再帰的に検索して削除するために使用できます。
find
find . -name .svn -exec rm -rf '{}' +
svn export は .svn なしですべてのファイルのコピーを行い、それが目的の場合は古いフォルダーを削除できます。