How To Move An svn Repository

On the source system, run:
svnadmin dump /path/to/repository > repository-name.dmp
Copy the dump file to the new server.  There, create a new repository to house the dumped information:
cd /path/to/new/repository
svnadmin create repository-name
svnadmin load repository-name < repository-name.dmp
Now, if you have a project that you checked out from the old location, that you want to point to the new location, [...]

Search and Replace on Multiple Files

Recently one of my hosting providers went and changed the path to my home directory without telling me.  So, I had to go through a gajillion files and modify a path to reflect the changes.  I thought I’d go ahead and share how I did that for anyone out there that has a similar need.
There [...]