Remove (obliterate) trees from subversion repository

If you need to wipe all traces for some objects in your svn repository, you can do something like this: # svnadmin dump REPOS_PATH | svndumpfilter \ $string | \ svnadmin load REPOS_PATH_NEW # mv REPOS_PATH REPOS_PATH_backup && REPOS_PATH_NEW \ REPOS_PATH ```…

Getting started with Subversion

Today I thought about how to have different revisions of my project documentation which is a condition precedent to my degree. After weighting up CVS [https://www.cvshome.org/] and Subversion [http://subversion.tigris.org/] I decided to use Subversion. It wasn't such short like it looks here to get…