<?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>A Glass case of Thoughts &#187; SVN</title>
	<atom:link href="http://jyotsna.philogy.com/tag/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://jyotsna.philogy.com</link>
	<description>By Jyotsna Sonawane</description>
	<lastBuildDate>Mon, 06 Feb 2012 00:47:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jyotsna.philogy.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/144e3f216a63c20ec12e9fd5e8727bd2?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>A Glass case of Thoughts &#187; SVN</title>
		<link>http://jyotsna.philogy.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jyotsna.philogy.com/osd.xml" title="A Glass case of Thoughts" />
	<atom:link rel='hub' href='http://jyotsna.philogy.com/?pushpress=hub'/>
		<item>
		<title>SVN : Preparing for branching/ Merging process</title>
		<link>http://jyotsna.philogy.com/2011/02/03/svn-preparing-for-branching-merging-process/</link>
		<comments>http://jyotsna.philogy.com/2011/02/03/svn-preparing-for-branching-merging-process/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 11:38:36 +0000</pubDate>
		<dc:creator>Jyotsna</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[branching and merging]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[svnadmin]]></category>
		<category><![CDATA[tortoiseSVN]]></category>

		<guid isPermaLink="false">http://jyotsna.philogy.com/?p=664</guid>
		<description><![CDATA[Preparing your repository for branching and merging can turn into a headache when you do it for the first time. This is a small .. may be obvious .. note to everybody who can get some help My setup SVN Server hosted on linux Tortoise SVN as client being used from windows If you perform [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jyotsna.philogy.com&amp;blog=19356036&amp;post=664&amp;subd=jy0tsna&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Preparing your repository for branching and merging can turn into a headache when you do it for the first time. This is a small .. may be obvious .. note to everybody who can get some help</p>
<p><strong>My setup</strong></p>
<ul>
<li>SVN Server hosted on linux</li>
<li>Tortoise SVN as client being used from windows</li>
</ul>
<p>If you perform following checks before getting into the process of branching and merging, you are going to save a lot of time and efforts trying to figure out errors messages and causes</p>
<ol>
<li>Make sure your <strong>SVN Server version</strong> is above 1.5. If not, <strong>UPGRADE</strong>. In my case it was 1.4.2 and I upgraded it to 1.6.* from <a href="http://www.open.collab.net/downloads/subversion/">Collabnet</a> </li>
<p></p>
<li>Make sure your <strong>SVN Repository version</strong> is upgraded. You can find that out by using following commands<br />
<pre class="brush: plain;">
cd /path/to/repo/reponame
cd db
cat format
</pre><br />
i.e. changing to repo/directory/db and looking at contents of <em>format</em> file. For 1.4.*, <em>format</em> file showed 2, which should be 4 for it to be a 1.6.* repository. I had to upgrade the repository version by using<br />
<pre class="brush: plain;">
svnadmin upgrade path/to/repo/reponame
</pre>
</li>
<p></p>
<li>Make sure your SVN Client is equipped to handle features offered by the upgraded SVN Server. I just downloaded version of tortoise svn made for 1.6 version</li>
<p>
</ol>
<p>After these checks, you can <a href="http://www.javaworld.com/javaworld/jw-01-2008/jw-01-svnmerging.html">choose the model</a> you want to opt for your process and get started. </p>
<p>In my case, I chose mainline development happening in trunk, creating branches after each phase release. Every-time a bug is fixed in a branch, its committed to its corresponding branch. Then from trunk, using TortoiseSVN&#8217;s &#8220;reintegrate a branch&#8221; option, I choose repository URL of branch and follow through steps to finish the merge. It works wonders !</p>
<p><strong>Related posts</strong></p>
<ul>
<li><a href="http://jy0tsna.files.wordpress.com/2009/05/putty-visharad-ssh-auth1.jpg2008/12/how-to-make-svn-remember-password/">How to make SVN remember password</a></li>
<li><a href="http://jyotsna.philogy.com/2009/05/what-to-do-when-your-svn-client-saves-a-wrong-password/">What to do : When your SVN client saves a wrong password</a></li>
<li><a href="http://jyotsna.philogy.com/2009/02/linux-how-to-replicate-svn-repository/">linux how to: replicate svn repository</a></li>
<li><a href="http://jyotsna.philogy.com/2008/12/linux-create-svn-repository/">linux: create svn repository</a></li>
<li><a href="http://jyotsna.philogy.com/2011/02/03/svn-utility-commands/">SVN : Utility commands</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jy0tsna.wordpress.com/664/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jy0tsna.wordpress.com/664/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jy0tsna.wordpress.com/664/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jy0tsna.wordpress.com/664/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jy0tsna.wordpress.com/664/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jy0tsna.wordpress.com/664/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jy0tsna.wordpress.com/664/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jy0tsna.wordpress.com/664/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jy0tsna.wordpress.com/664/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jy0tsna.wordpress.com/664/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jy0tsna.wordpress.com/664/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jy0tsna.wordpress.com/664/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jy0tsna.wordpress.com/664/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jy0tsna.wordpress.com/664/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jyotsna.philogy.com&amp;blog=19356036&amp;post=664&amp;subd=jy0tsna&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jyotsna.philogy.com/2011/02/03/svn-preparing-for-branching-merging-process/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59272e407d1ae02c38c11a03dbd61cc2?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">pixperiments</media:title>
		</media:content>
	</item>
		<item>
		<title>SVN : Utility commands</title>
		<link>http://jyotsna.philogy.com/2011/02/03/svn-utility-commands/</link>
		<comments>http://jyotsna.philogy.com/2011/02/03/svn-utility-commands/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 11:00:24 +0000</pubDate>
		<dc:creator>Jyotsna</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[create svn repository linux]]></category>
		<category><![CDATA[know svn version]]></category>
		<category><![CDATA[svn utility commands]]></category>
		<category><![CDATA[svnadmin]]></category>
		<category><![CDATA[upgrade svn repository]]></category>

		<guid isPermaLink="false">http://jyotsna.philogy.com/?p=659</guid>
		<description><![CDATA[List of SVN utility commands that I needed to use frequently apart from commit and update. Feel free to add to the list Know SVN binary path Know SVN server version installed Know SVN Client server version installed Create SVN Respository You can then assign permissions to reponame directory like you do on any other [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jyotsna.philogy.com&amp;blog=19356036&amp;post=659&amp;subd=jy0tsna&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>List of SVN utility commands that I needed to use frequently apart from commit and update. Feel free to add to the list</p>
<ul>
<li>Know SVN binary path<br />
<pre class="brush: plain;">
which svn
</pre>
</li>
<li>Know <strong>SVN server</strong> version installed<br />
<pre class="brush: plain;">
svnadmin --version
</pre>
</li>
<li>Know <strong>SVN Client</strong> server version installed<br />
<pre class="brush: plain;">
svn --version
</pre>
</li>
<li>Create SVN Respository<br />
<pre class="brush: plain;">
svnadmin create path/to/repository/reponame
</pre><br />
You can then assign permissions to reponame directory like you do on any other directory
</li>
<li>Upgrade <strong>SVN Respository</strong> version<br />
<pre class="brush: plain;">
svnadmin upgrade path/to/repository
</pre>
</li>
</ul>
<p><strong>Related posts</strong></p>
<ul>
<li><a href="http://jy0tsna.files.wordpress.com/2009/05/putty-visharad-ssh-auth1.jpg2008/12/how-to-make-svn-remember-password/">How to make SVN remember password</a></li>
<li><a href="http://jyotsna.philogy.com/2009/05/what-to-do-when-your-svn-client-saves-a-wrong-password/">What to do : When your SVN client saves a wrong password</a></li>
<li><a href="http://jyotsna.philogy.com/2009/02/linux-how-to-replicate-svn-repository/">linux how to: replicate svn repository</a></li>
<li><a href="http://jyotsna.philogy.com/2008/12/linux-create-svn-repository/">linux: create svn repository</a></li>
<li><a href="http://jyotsna.philogy.com/2011/02/03/svn-preparing-for-branching-merging-process/">SVN : Preparing for branching/ Merging process</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jy0tsna.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jy0tsna.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jy0tsna.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jy0tsna.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jy0tsna.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jy0tsna.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jy0tsna.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jy0tsna.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jy0tsna.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jy0tsna.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jy0tsna.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jy0tsna.wordpress.com/659/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jy0tsna.wordpress.com/659/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jy0tsna.wordpress.com/659/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jyotsna.philogy.com&amp;blog=19356036&amp;post=659&amp;subd=jy0tsna&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jyotsna.philogy.com/2011/02/03/svn-utility-commands/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59272e407d1ae02c38c11a03dbd61cc2?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">pixperiments</media:title>
		</media:content>
	</item>
		<item>
		<title>tortoise SVN: Copy a SVN bound directory to another repository</title>
		<link>http://jyotsna.philogy.com/2009/11/30/tortoise-svn-copy-a-svn-bound-directory-to-another-repository/</link>
		<comments>http://jyotsna.philogy.com/2009/11/30/tortoise-svn-copy-a-svn-bound-directory-to-another-repository/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 12:54:39 +0000</pubDate>
		<dc:creator>Jyotsna</dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[copy svn directory]]></category>
		<category><![CDATA[svn directory replicate]]></category>
		<category><![CDATA[tortoise svn]]></category>
		<category><![CDATA[tortoiseSVN]]></category>

		<guid isPermaLink="false">http://jyotsna.philogy.com/?p=397</guid>
		<description><![CDATA[This post explains the simplest way to copy a SVN bound directory from one repository to another repository<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jyotsna.philogy.com&amp;blog=19356036&amp;post=397&amp;subd=jy0tsna&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Task at hand:<br />
Copy a directory from within one SVN repository to another</p>
<p>Assumptions:<br />
- Tortoise SVN as SVN client<br />
- The two SVN repositories &#8211; being copied from and being copied to already exist</p>
<p>Steps:<br />
1. Right click SVN bound directory that you with to copy. Choose tortoise SVN -&gt; Export.<br />
2. Specify path to an empty folder e.g. &#8220;c:\to_add&#8221;. Click on OK.<br />
3. Now you have the SVN bound directory contents in this new directory &#8220;to_add&#8221;.<br />
4. Right click on &#8220;to_add&#8221; and choose tortoise svn -&gt; add<br />
5. Specify path to the new repository and location inside it.<br />
6. Right click on &#8220;to_add&#8221; and choose SVN Commit to make your changes permanent.</p>
<p>Voila !! You are done.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jy0tsna.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jy0tsna.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jy0tsna.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jy0tsna.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jy0tsna.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jy0tsna.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jy0tsna.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jy0tsna.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jy0tsna.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jy0tsna.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jy0tsna.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jy0tsna.wordpress.com/397/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jy0tsna.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jy0tsna.wordpress.com/397/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jyotsna.philogy.com&amp;blog=19356036&amp;post=397&amp;subd=jy0tsna&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jyotsna.philogy.com/2009/11/30/tortoise-svn-copy-a-svn-bound-directory-to-another-repository/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59272e407d1ae02c38c11a03dbd61cc2?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">pixperiments</media:title>
		</media:content>
	</item>
		<item>
		<title>How to make SVN remember password</title>
		<link>http://jyotsna.philogy.com/2008/12/06/how-to-make-svn-remember-password/</link>
		<comments>http://jyotsna.philogy.com/2008/12/06/how-to-make-svn-remember-password/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 15:24:24 +0000</pubDate>
		<dc:creator>Jyotsna</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[how to save password for svn+ssh]]></category>
		<category><![CDATA[id_dsa]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux remember password svn]]></category>
		<category><![CDATA[linux svn password]]></category>
		<category><![CDATA[make tortoisesvn remember]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[remember]]></category>
		<category><![CDATA[remember password]]></category>
		<category><![CDATA[remember password svn]]></category>
		<category><![CDATA[svn save password]]></category>
		<category><![CDATA[svn tortoise "save password"]]></category>
		<category><![CDATA[svn+ssh]]></category>
		<category><![CDATA[tortoise svn]]></category>
		<category><![CDATA[tortoise svn remember password]]></category>
		<category><![CDATA[tortoiseSVN]]></category>

		<guid isPermaLink="false">http://jyotsna.philogy.com/?p=12</guid>
		<description><![CDATA[Who is this post for? This post is for anyone who wants a step by step guide to accomplish any of the following Make a SVN client like tortoise svn remember password Make linux server remember your password when logging through putty Tools you need: Putty Puttygen What you need to do: Using putty &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jyotsna.philogy.com&amp;blog=19356036&amp;post=12&amp;subd=jy0tsna&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><b>Who is this post for?</b></p>
<p> This post is for anyone who wants a step by step guide to accomplish any of the following</p>
<ol>
<li>Make a SVN client like tortoise svn remember password</li>
<li>Make linux server remember your password when logging through putty</li>
</ol>
<p><b>Tools you need:</b></p>
<ul>
<li>Putty</li>
<li>Puttygen</li>
</ul>
<p><b>What you need to do:</b></p>
<ol>
<li>Using putty &#8211; login to linux server. change directory to ~/.ssh/ by typing following command
<pre>cd ~/.ssh</pre>
</li>
<li>Type command
<pre>ssh-keygen -b 1024 -t dsa </pre>
<p>and press enter. Do not enter a passphrase. Hit enter when prompted for one. Same for the filename. default filename = <em>id_dsa</em> and <em>id_dsa.pub</em>. id_dsa is the private key file and id_dsa.pub is the public key file.</li>
<li>type command
<pre>cat ~/.ssh/id_dsa.pub</pre>
<p>Copy the output to the clipboard by selecting the output by mouse.</li>
<li>Type command
<pre>vi ~/.ssh/authorized_keys</pre>
<p>Hit <em>i</em> to enter Insert mode and then paste your public key (if there is already a key in this file, move to the bottom before pasting). Hit the ESC key to leave Insert mode and type <em>:wq</em> and hit enter to save and exit vi editor.</li>
<li>Using ftp download your key files &#8211; both private and public</li>
<p></p>
<li>In order to use the private key we get from the server, we have to convert it to a putty format. This is because the private key file format is not specified by some standard body. We can accomplish this using puttygen. Open Puttygen</li>
<p></p>
<li>In the tree structure on left, choose conversion -&gt; import key -&gt; choose the private key file downloaded from ftp</li>
<p></p>
<li>Choose to save private key. Choose path and save the file as anything.ppk</li>
<p></p>
<li>Run Putty. Specify parameters
<ul>
<li>Session-&gt;HostName: Hostname or IP Adress of your server</li>
<li>Session-&gt;Protocol: SSH</li>
<li>Session-&gt;Saved Sessions: MyConnection</li>
<li>SSH-&gt;Prefered SSH Protocol version: 2</li>
<li>SSH-&gt;Auth-&gt;Private Key file for auth: $PATH$mykey.PKK (replace $PATH$ with real path to the mykey.PKK file)</li>
</ul>
</li>
<li>Go back to Session tab and hit “save” button. You will see “MyConnection” in the list of available connections.</li>
<p></p>
<li>Next click “open” and you should see a telnet login prompt. Use “myuser” as username (without double quotes of course) and if everything is OK, you don’t have to provide a password to your system. If the system still requires a password, something went wrong.</li>
<p></p>
<li>Now that linux server and putty manage to remember your password, you need an application client to use it. In this case it is SVN client e.g. tortoise svn. Go to TortoiseSVN-&gt;RepoBrowser and specify a URL like this:
<pre>svn+ssh://myuser@MyConnection/usr/local/repos</pre>
<p>&#8230;where MyConnection is the putty session name and /usr/local/repos is my svn repository on linux server</li>
</ol>
<p>And you are done &#8230;</p>
<p><strong>Related posts</strong></p>
<ul>
<li><a href="http://jyotsna.philogy.com/2009/05/what-to-do-when-your-svn-client-saves-a-wrong-password/">What to do : When your SVN client saves a wrong password</a></li>
<li><a href="http://jyotsna.philogy.com/2009/02/linux-how-to-replicate-svn-repository/">linux how to: replicate svn repository</a></li>
<li><a href="http://jyotsna.philogy.com/2008/12/linux-create-svn-repository/">linux: create svn repository</a></li>
<li><a href="http://jyotsna.philogy.com/2011/02/03/svn-preparing-for-branching-merging-process/">SVN : Preparing for branching/ Merging process</a></li>
<li><a href="http://jyotsna.philogy.com/2011/02/03/svn-utility-commands/">SVN : Utility commands</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jy0tsna.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jy0tsna.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jy0tsna.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jy0tsna.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jy0tsna.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jy0tsna.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jy0tsna.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jy0tsna.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jy0tsna.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jy0tsna.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jy0tsna.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jy0tsna.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jy0tsna.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jy0tsna.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jyotsna.philogy.com&amp;blog=19356036&amp;post=12&amp;subd=jy0tsna&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jyotsna.philogy.com/2008/12/06/how-to-make-svn-remember-password/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/59272e407d1ae02c38c11a03dbd61cc2?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">pixperiments</media:title>
		</media:content>
	</item>
	</channel>
</rss>
