Situation: A directory had been deleted a while ago from the repository and we want it back without interfering with commits that were since made in other parts of the repository, and without having to have the repository in the workspace. Reference: http://svnbook.red-bean.com/en/1.8/svn.branchmerge.basicmerging.html#svn.branchmerge.basicmerging.undo Solution: – Find out which revision of the commit it was that …
Category: SVN
SVN tips and tricks
Install a load balanced SVN system
Until I create my own docs here, I suggest you have a look at the following page from which I’m going to base my own version here anyway. http://www.devx.com/opensource/Article/39525/1954
Rebuild a mirror SVN from a master repository
There are a few ways to create a mirror SVN repository from a master repository. Some are slower than others but all of the ones mentioned below are reliable. The standard way: (All operations below are done on the mirror server) – Delete the old mirror repository – svnadmin create {path of repo} – svnsync …
SVN + WebSVN(SSL) Installation in Debian Squeeze
These instructions show how to install the SVN system and the WebSVN via Apache SSL connection. These instructions don’t explain much, I hope your are Linux/Apache savvy enough to understand them. Install the needed Debian packages apt-get install subversion libapache2-svn openssl ssl-cert a2enmod ssl a2enmod dav_svn Everything in the dav_svn.conf configuration file is already disabled. …