I moved to a new SVN server yesterday so I’ll be bouncing my web sites a bit today as I get them all set on SVN checkouts from the new server. If one of my sites isn’t available, please check back in a few minutes.
Apologies in advance for any inconvenience.
UPDATE 4:25pm MDT: alexking.org is done, please let me know if anything doesn’t seem right.
UPDATE 4:50pm MDT: crowdfavorite.net is done, please let me know if anything doesn’t seem right.
If you run SVN over SSH, you can use “aliases” in your ssh configuration (~/.ssh/config).
What I typically have is something like:
Host svn
HostName real.svn.hostname
User user_for_this_machine
Then I would use:
svn co svn+ssh://svn/var/svnroot/project/trunk
instead of:
svn co svn+ssh://real.svn.hostname/var/svnroot/project/trunk
Later, moving the repository just involves updating the ssh configuration.
That’s a good tip, unfortunately for a variety of reasons it won’t work for me in this case. Definitely good info for the future though.
You are great