<?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>Dot Net Thoughts &#187; Version Control</title>
	<atom:link href="http://www.dotnetthoughts.net/category/version-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dotnetthoughts.net</link>
	<description>thoughts about .Net, WPF, Sharepoint, Javascript and more.</description>
	<lastBuildDate>Wed, 28 Jul 2010 09:59:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Configuring Subversion</title>
		<link>http://www.dotnetthoughts.net/2007/05/10/configuring-subversion/</link>
		<comments>http://www.dotnetthoughts.net/2007/05/10/configuring-subversion/#comments</comments>
		<pubDate>Thu, 10 May 2007 06:45:25 +0000</pubDate>
		<dc:creator>Anuraj P</dc:creator>
				<category><![CDATA[Version Control]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://anuraj.wordpress.com/2007/05/10/configuring-subversion/</guid>
		<description><![CDATA[To modify access permissions and users configuration need to modify the svnserve.conf file, which is under Repository &#62; Conf &#62; svnserve.conf file. And uncomment or add following lines [general]   # Anonymous access – Readonly permission anon-access = read  # Authenticated access – Write permission permission auth-access = write # Username and Password database file. [...]]]></description>
			<content:encoded><![CDATA[<p>To modify access permissions and users configuration need to modify the<br />
<em>svnserve.conf</em> file, which is under <em>Repository &gt; Conf &gt; svnserve.conf</em> file.</p>
<p>And uncomment or add following lines</p>
<p>[general]<br />
 <br />
<em># Anonymous access – Readonly permission</em><br />
anon-access = read <br />
<em># Authenticated access – Write permission permission<br />
</em>auth-access = write<br />
<em># Username and Password database file.<br />
</em>password-db = passwd<br />
To add users to the repository need to modify the passwd file, it will be in <em>Repository &gt; Conf &gt; Passwd </em>file</p>
<p>And the passwd file syntax is like <em>username = password.</em></p>
<p># Sample password file.</p>
<p>[users]<br />
Admin = admin<br />
Guest = guest</p>
<p>Save this file.</p>
<p>To run Subversion server, type following command in the command prompt.</p>
<p><em>svnserve.exe &#8211;daemon &#8211;root &lt;physical path&gt;</em></p>
<p>To connect to the repository using subversion client(ex: tortoise svn client)</p>
<p><em>svn://localhost/repositoryname</em></p>
<p><strong>voila!</strong> you configured the subversion. <img src='http://www.dotnetthoughts.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnetthoughts.net/2007/05/10/configuring-subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion &#8211; Creating Repository</title>
		<link>http://www.dotnetthoughts.net/2007/05/09/subversion-creating-repository/</link>
		<comments>http://www.dotnetthoughts.net/2007/05/09/subversion-creating-repository/#comments</comments>
		<pubDate>Wed, 09 May 2007 12:51:43 +0000</pubDate>
		<dc:creator>Anuraj P</dc:creator>
				<category><![CDATA[Version Control]]></category>

		<guid isPermaLink="false">http://anuraj.wordpress.com/2007/05/11/subversion-creating-repository/</guid>
		<description><![CDATA[Creating Repository Go to the command prompt. Check the svn directory exists in the PATH variable. svnadmin create C:\MyProject This will create a new repositiory with name as &#8220;MyProject&#8221; For more details on creating repository SVN Book &#8211; Chapter 5]]></description>
			<content:encoded><![CDATA[<p>Creating Repository</p>
<p>Go to the command prompt. Check the svn directory exists in the PATH variable.</p>
<p>svnadmin create C:\MyProject</p>
<p>This will create a new repositiory with name as &#8220;MyProject&#8221;</p>
<p>For more details on creating repository</p>
<p><a target="_blank" href="http://svnbook.red-bean.com/en/1.0/ch05s02.html">SVN Book &#8211; Chapter 5</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnetthoughts.net/2007/05/09/subversion-creating-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion &#8211; Introduction.</title>
		<link>http://www.dotnetthoughts.net/2007/05/07/subversion-introduction/</link>
		<comments>http://www.dotnetthoughts.net/2007/05/07/subversion-introduction/#comments</comments>
		<pubDate>Mon, 07 May 2007 12:05:40 +0000</pubDate>
		<dc:creator>Anuraj P</dc:creator>
				<category><![CDATA[Version Control]]></category>

		<guid isPermaLink="false">http://anuraj.wordpress.com/2007/05/07/subversion-introduction/</guid>
		<description><![CDATA[Subversion is a new version control system that is a compelling replacement for CVS in the open source community. You can get more details about Subversion from this link http://subversion.tigris.org/(Subversion Project HomePage)]]></description>
			<content:encoded><![CDATA[<p>Subversion is a new version control system that is a compelling replacement for CVS in the open source community. You can get more details about Subversion from this link</p>
<p><u><font color="#0000ff"><a href="http://subversion.tigris.org/(Subversion">http://subversion.tigris.org/</a></font></u>(Subversion Project HomePage)<a href="http://subversion/"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnetthoughts.net/2007/05/07/subversion-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
