How do I migrate an SVN repository to a GIT repository?

January 29, 2012 in GIT, Recipes, Subversion, Version Control

We will illustrate this procedure using a simple example. The following steps have been validated on Mac OS X Snow Leopard, but I presume they are valid in general. Note
…read more

How do I integrate SVN with Emacs?

December 5, 2010 in Emacs and friends, Recipes, Subversion

So far, I found the package psvn quite useful. Refer to Anthorspace blog for how to set it up. This is the only stuff I added to my configuration file:
…read more

How do I remove the .svn hidden folders?

December 4, 2010 in Recipes, Shell, Subversion

If the command svn export is not suitable for you, then you may use this command: find . -name .svn -print0 | xargs -0 rm -rf as suggested here.