<?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>Jayway Team Blog &#187; repository</title>
	<atom:link href="http://blog.jayway.com/tag/repository/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jayway.com</link>
	<description>Sharing Experience</description>
	<lastBuildDate>Sat, 11 Feb 2012 10:33:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Setting up a local Subversion repository to use with your Eclipse</title>
		<link>http://blog.jayway.com/2009/04/03/setting-up-a-local-subversion-repository-to-use-with-your-eclipse/</link>
		<comments>http://blog.jayway.com/2009/04/03/setting-up-a-local-subversion-repository-to-use-with-your-eclipse/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 08:33:48 +0000</pubDate>
		<dc:creator>Rickard Nilsson</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[subclipse]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://blog.jayway.com/?p=1498</guid>
		<description><![CDATA[I've been spending some time studying a tool for looking at the structure of code bases. After having tried out some of the more basic possibilities I wanted to go for the finer points and study changes between two versions of code to see what effect my changes made. This is where I realise that [...]]]></description>
			<content:encoded><![CDATA[<p>I've been spending some time studying a tool for looking at the structure of code bases. After having tried out some of the more basic possibilities I wanted to go for the finer points and study changes between two versions of code to see what effect my changes made. This is where I realise that I would like to have a local Subversion repository not only for this,  but also for how it would benefit some of my hobby projects. After some googling I found my way to <a href="http://subversion.tigris.org/project_packages.html">http://subversion.tigris.org/project_packages.html</a> where, since I'm on windows, I picked the windows path. I end up downloading the latest version of Subversion:  <a href="http://subversion.tigris.org/files/documents/15/45344/svn-win32-1.6.0.zip">http://subversion.tigris.org/files/documents/15/45344/svn-win32-1.6.0.zip</a></p>
<p>I unpack it in "C:\Program Files\Subversion". To get the commands to work you have to add the  bin to your path. In my case I add "C:\Program Files\Subversion\svn-win32-1.5.6\bin" to the path. After this I open up a  command window and do the following:</p>
<pre lang="text">
mkdir subversionRepository
cd subversionRepository
svnadmin create project1
</pre>
<p>Now, in order to make Subversion work in Eclipse I add http://subclipse.tigris.org/update_1.6.x  to my update sites. After downloading this I restart my Eclipse and go to Window -> Show View ->Other->SVN -> SVN Repositories.<br />
I right click in the opened view and create a new repository location. Instead of writing a http adress in the URL window I now type "file:///C:/subversionRepository/project1". Notice the three forward slashes after "file:".</p>
<p>I now have an empty repository that I want to put my project into so I right click on the repository and add a new remote folder that I call trunk. Right clicking on the trunk I can now import my project by importing the folder that contains the .project file. I hit F5 to refresh the view and can see that the trunk is now filled with my first version of my project.</p>
<p>But I also have to associate the repository version with Eclipse, so now I right click in the Package Explorer and choose Import -> SVN -> Checkout Projects from SVN. I pick my previously created repository, click next, mark the trunk and then click finish. I get a question if I want to overwrite my previously created project with the same name and say ok. I won't need that now that I got a versioning system! </p>
<p>I can now finally continue my studies of the tool I was looking into.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jayway.com/2009/04/03/setting-up-a-local-subversion-repository-to-use-with-your-eclipse/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

