An AppleScript droplet that removes the ‘.svn’ folders from the folder you drop onto it.
Social 2.5
I’m very pleased to share version 2.5 of Social with you. Brought to you by our good friends at MailChimp (see their blog post), Social is a…
I’m very pleased to share version 2.5 of Social with you. Brought to you by our good friends at MailChimp (see their blog post), Social is a…
Fellow Colorado web geeks, I made you a t-shirt. The code that comprises the white stripe is a full, working HTML page with canvas code that draws…
It’s been very interesting to me to see how some folks are re-evaluating their work/life balance in the wake of reading Isaacson’s Steve…
An AppleScript droplet that removes the ‘.svn’ folders from the folder you drop onto it.
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.