An AppleScript droplet that removes the ‘.svn’ folders from the folder you drop onto it.
Capsule, The Developer’s Code Journal
I’m very pleased today to announce the release of Capsule, the developer’s code journal. Capsule replaces the scratch document you have…
Alex – is this recursive?
Yep.
[...] also found an AppleScript named SVN Zapper from Alex King that appears to do the same [...]
Curious, why would you want to remove the .svn folders? Aren’t they used to keep your copy of the code synchronized? (Sorry, I am new to subversion).
If anyone still ends up here in search of a solution you can just you this command in the terminal:
find . -name “.svn” -exec rm -rf {} \;
Especially since this app only works in “classic”.
New version should work fine with OS X 10.5.x. Thanks Adam.
[...] to Adam Tow, I’ve got a newly updated version of SVN Zapper available. This version should be nicely compatible with Mac OS X [...]
I still see the usefulness of this, but as a sidenote if you have access to the SVN repo and are doing a checkout, you can instead to an “svn export” to checkout the project without all of the .svn folders, or any svn functionality at all for the matter.