Published Monday November 20, 2006
The setup on the Site5 server basically involves creating a deployment directory and the initial SVN repository. I will be using the suggested
Let’s get started by creating the deployment directory. SSH to your hosting account (
While we are at it, let’s also create the Secure Shell directory so we can upload our public key here in the later steps:
Now, let’s create the SVN repository:
mkdir -p ~/temp/{trunk,branches,tags}
cd ~/temp
svn import ~/temp file:///home//svn_repo/ -m "Initial layout"
rm -rf ~/temp
If you are a curious one, like myself :), then run the following command to see how the repository looks afterwards:
Comments