-
Converting a Subversion SVN Repository to Git
I’ve used DreamHost’s SVN hosting with past projects I’ve done. It wasn’t till recently that I had time to migrate them over to Git. Searching the net, I found JohnAlbin’s steps on how to do so efficiently (written in August 2010). ((If you have Ruby, you may try svn2git tool, which will skip steps 1-6.))…
-
Delete .SVN Directories
Ever accidentally do an svn checkout instead of an export? Here’s a command-line snippet to take care of those hidden .SVN directories: rm -rf `find . -type d -name .svn` Warning: Take great care when using “rm -rf” always.