• Happy Coding

Posts Tagged ‘subversion’

rapidsvn. A multi-platform GUI front-end for the Subversion revision system

rapidsvn_logoWhenever i need to manage my subversion repository, i am using rapidsvn under Ubuntu. Pretty simple interface, but it fullfills its purpose.

Recovering a deleted file in Subversion

svn up -r 3838 myfile.test

In this case 3838 is the number of the revision in which the file existed.

error: Unexpected HTML page found at http://trac-hacks.org/svn/accountmanagerplugin/0.10

I got the following error:

error: Unexpected HTML page found at http://trac-hacks.org/svn/accountmanagerplugin/0.10

To fix it, you need to update setuptools via

sudo easy_install -U setuptools

Backup a subversion repository

Dumping it into a file (e.g. repository.dump)

svnadmin dump /path/to/repository > repository.dump

Loading the dumped file back into a repository

svnadmin load /path/to/repository < repository.dump