<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>/harry-webster.co(.uk&#124;m)/ &#187; svnadmin</title>
	<atom:link href="http://www.harry-webster.co.uk/tag/svnadmin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.harry-webster.co.uk</link>
	<description>Harry Webster&#039;s Blog</description>
	<lastBuildDate>Thu, 11 Aug 2011 18:43:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Setting up a local subversion repo</title>
		<link>http://www.harry-webster.co.uk/2010/02/setting-up-a-local-subversion-repo/</link>
		<comments>http://www.harry-webster.co.uk/2010/02/setting-up-a-local-subversion-repo/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 15:26:00 +0000</pubDate>
		<dc:creator>Harry</dc:creator>
				<category><![CDATA[Systems Administration]]></category>
		<category><![CDATA[checkout]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[svnadmin]]></category>

		<guid isPermaLink="false">http://www.harry-webster.co.uk/?p=18</guid>
		<description><![CDATA[First create the repository $ svnadmin create /home/subversion/name_of_project Then checkout thisproject into the directory where you&#8217;d like to work on it. $ svn [...]]]></description>
			<content:encoded><![CDATA[<p>First create the repository</p>
<pre>$ svnadmin create /home/subversion/name_of_project</pre>
<p>Then checkout thisproject into the directory where you&#8217;d like to work on it.</p>
<pre>$ svn checkout file:///home/subversion/name_of_project /home/me/my_project
</pre>
<p>If you&#8217;re wanting to checkout this repo onto another server using SSH you can do this but running:</p>
<pre>$ svn co svn+ssh://username@your.remote-server.com/home/subversion/name_of_project /home/me/my_project</pre>
<p>In many cases none standard SSH ports are used, which can cause a problem connecting in this way, personally I resolved this by modifying my ~/.ssh/config like this:</p>
<pre>[your.remote-server.com]
    User my_username
    Port 12345</pre>
<p>This means that when you SSH to your SVN repo you&#8217;ll always connect using the username my_username and the SSH port 12345.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.harry-webster.co.uk/2010/02/setting-up-a-local-subversion-repo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

