<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Tech World</title>
	<atom:link href="http://vikrambhatla.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vikrambhatla.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 01 Mar 2010 12:38:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vikrambhatla.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Tech World</title>
		<link>http://vikrambhatla.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vikrambhatla.wordpress.com/osd.xml" title="Tech World" />
	<atom:link rel='hub' href='http://vikrambhatla.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Configuring SVN Server</title>
		<link>http://vikrambhatla.wordpress.com/2010/03/01/configuring-svn-server/</link>
		<comments>http://vikrambhatla.wordpress.com/2010/03/01/configuring-svn-server/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 11:40:20 +0000</pubDate>
		<dc:creator>vikrambhatla</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Create Repository: svnadmin create /path/to/repository i.e svnadmin create /Users/vbhatla/svn Changing the repository read write access sudo chmod -R 777 path/to/repository i.e sudo chmod -R 777 /Users/vbhatla/svn Add a New Project: To add a project, the Subversion documentation suggests that you create a directory structure like the following: project/branches project/tags project/trunk Your files and directories are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vikrambhatla.wordpress.com&amp;blog=12309667&amp;post=1&amp;subd=vikrambhatla&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Create Repository:</strong></p>
<p>svnadmin create /path/to/repository<br />
i.e svnadmin create /Users/vbhatla/svn</p>
<p></br><br />
</br><br />
<strong>Changing the repository read write access</strong></p>
<p>sudo chmod -R 777 path/to/repository<br />
i.e sudo chmod -R 777 /Users/vbhatla/svn</p>
<p></br><br />
</br><br />
<strong>Add a New Project:</strong></p>
<p>To add a project, the Subversion documentation suggests that you create a directory structure like the following:</p>
<p>project/branches<br />
project/tags<br />
project/trunk</p>
<p>Your files and directories are stored under the trunk directory</p>
<p>Create the directories as described. Assuming the project directory is a subdirectory of the current directory, you would enter the following command</p>
<p>svn import project file:///Users/vbhatla/svn/project -m &#8220;First Import&#8221;</p>
<p></br><br />
</br><br />
<strong>Editing /Users/vbhatla/svn/conf/passwd file</strong></p>
<p>adding users<br />
[users]</p>
<p>username = password<br />
john = john123<br />
vbhatla = vikram123<br />
vikrambhatla = vikram123</p>
<p></br><br />
</br><br />
<strong>Editing /Users/vbhatla/svn/conf/authz file</strong></p>
<p>#Adding groups</p>
<p>[groups]</p>
<p>team = vbhatla, john<br />
phpteam = vikrambhatla</p>
<p># Adding read write access to the repositories</p>
<p>[/]<br />
@team = rw</p>
<p>[/project/trunk/www]<br />
@team = rw<br />
@phpteam = rw</p>
<p></br><br />
</br><br />
<strong>Editing /Users/vbhatla/svn/conf/svnserve.conf</strong></p>
<p>[general]</p>
<div id="_mcePaste"><span style="font-weight:normal;">### These options control access to the repository for unauthenticated</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### and authenticated users.  Valid values are &#8220;write&#8221;, &#8220;read&#8221;,</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### and &#8220;none&#8221;.  The sample settings below are the defaults.</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">anon-access = none</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">auth-access = write</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### The password-db option controls the location of the password</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### database file.  Unless you specify a path starting with a /,</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### the file&#8217;s location is relative to the conf directory.</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### Uncomment the line below to use the default password file.</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">password-db = passwd</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### The authz-db option controls the location of the authorization</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### rules for path-based access control.  Unless you specify a path</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### starting with a /, the file&#8217;s location is relative to the conf</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### directory.  If you don&#8217;t specify an authz-db, no path-based access</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### control is done.</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### Uncomment the line below to use the default authorization file.</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">authz-db = authz</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### This option specifies the authentication realm of the repository.</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### If two repositories have the same authentication realm, they should</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### have the same password database, and vice versa.  The default realm</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">### is repository&#8217;s uuid.</span></div>
<div id="_mcePaste"><span style="font-weight:normal;">realm = My Project Repository</span></div>
<div>Starting svnserve</div>
<div><span style="font-weight:normal;">svnserve -d -r /Users/vbhatla/svn</span></div>
<div><span style="font-weight:normal;"><br />
</span></div>
<p> <br />
</br><br />
</br><br />
<strong>Checking Out a project- svn checkout</strong></p>
<p>svn checkout file:///Users/vbhatla/svn/project project</p>
<p></br><br />
</br><br />
<strong>Add directory</strong></p>
<p>cd project/trunk/www<br />
mkdir code<br />
svn add code</p>
<p></br><br />
</br><br />
<strong>Committing Changes </strong></p>
<p><strong> </strong>svn ci &#8211;username vbhatla &#8211;password vikram123 -m &#8220;adding new<br />
directory code&#8221;</p>
<p><strong>Checking status</strong><br />
<strong> </strong>svn status</p>
<p></br><br />
</br><br />
<strong>Subversion cheat sheet:</strong><br />
<a href="http://www.abbeyworkshop.com/howto/misc/svn01/">http://www.abbeyworkshop.com/howto/misc/svn01/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vikrambhatla.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vikrambhatla.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vikrambhatla.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vikrambhatla.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vikrambhatla.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vikrambhatla.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vikrambhatla.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vikrambhatla.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vikrambhatla.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vikrambhatla.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vikrambhatla.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vikrambhatla.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vikrambhatla.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vikrambhatla.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vikrambhatla.wordpress.com&amp;blog=12309667&amp;post=1&amp;subd=vikrambhatla&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vikrambhatla.wordpress.com/2010/03/01/configuring-svn-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/49ba50ec3416836a54f63da9c2786c15?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vikrambhatla</media:title>
		</media:content>
	</item>
	</channel>
</rss>
