<?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>fiveclouds &#187; subversion</title>
	<atom:link href="http://www.fiveclouds.com/tag/subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fiveclouds.com</link>
	<description>collaboration, creativity and the next big thing</description>
	<lastBuildDate>Tue, 25 May 2010 11:06:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>BeanStalk and GitHub</title>
		<link>http://www.fiveclouds.com/2008/09/23/beanstalk-and-github/</link>
		<comments>http://www.fiveclouds.com/2008/09/23/beanstalk-and-github/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 13:16:22 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.fiveclouds.com/?p=77</guid>
		<description><![CDATA[<p>Recently I have switch my clients over to either <a href="http://www.beanstalkapp.com">BeanStalk</a> or <a href="http://www.github.com">GitHub</a>, and I have to admit it is actually really nice to not have to worry about source control systems any more.   It is one of those places where you really don&#8217;t add a ton of value by controlling the platform,  and both systems have some really nice integrations,  and since my BeanStalk client is big into <a href="http://campfirenow.com/">Campfire</a> and <a href="http://www.zendesk.com">ZenDesk</a> it does really tie together their world.</p>
<p>Git is still new to me and I&#8217;m only using it on the one project right now &#8211;&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Recently I have switch my clients over to either <a href="http://www.beanstalkapp.com">BeanStalk</a> or <a href="http://www.github.com">GitHub</a>, and I have to admit it is actually really nice to not have to worry about source control systems any more.   It is one of those places where you really don&#8217;t add a ton of value by controlling the platform,  and both systems have some really nice integrations,  and since my BeanStalk client is big into <a href="http://campfirenow.com/">Campfire</a> and <a href="http://www.zendesk.com">ZenDesk</a> it does really tie together their world.</p>
<p>Git is still new to me and I&#8217;m only using it on the one project right now &#8211; though I have already seen the value in being able to quickly branch and also being able to commit locally (when on flights etc) really helps you make sure the commit messages are meaningful.  I&#8217;m hoping to see a lot more of git in the next couple of months since I&#8217;m going to try and move all the new projects that way.   Though if you are still happy on Subversion then BeanStalk is definitely worth a look.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fiveclouds.com/2008/09/23/beanstalk-and-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Subversion on Ganymede (Leopard)</title>
		<link>http://www.fiveclouds.com/2008/07/16/getting-subversion-on-ganymede-leopard/</link>
		<comments>http://www.fiveclouds.com/2008/07/16/getting-subversion-on-ganymede-leopard/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 13:09:22 +0000</pubDate>
		<dc:creator>Philip</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://www.fiveclouds.com/?p=53</guid>
		<description><![CDATA[<p>In the past few days I started using the new <a href="http://www.eclipse.org">Eclipse</a> 3.4 (Ganymede) release,  I had been working happily away using the command line subversion but I decided to give the Subversion integration a go.  i have to admit I was totally confused by the deployment,  Subversion support is meant to be part of the product but you have to download the <a href="http://www.polarion.org/index.php?page=download&#38;project=subversive">Subversion Connectors from Polarion</a>.  After trying several times to install the missing bits and not being able to get the projects to appear with any subversion support I ended up installing the Subversion 1.5 binaries for&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>In the past few days I started using the new <a href="http://www.eclipse.org">Eclipse</a> 3.4 (Ganymede) release,  I had been working happily away using the command line subversion but I decided to give the Subversion integration a go.  i have to admit I was totally confused by the deployment,  Subversion support is meant to be part of the product but you have to download the <a href="http://www.polarion.org/index.php?page=download&amp;project=subversive">Subversion Connectors from Polarion</a>.  After trying several times to install the missing bits and not being able to get the projects to appear with any subversion support I ended up installing the Subversion 1.5 binaries for Mac (available <a href="http://www.collab.net/downloads/community/">here</a> from Collab.net).  Then updating my ~/.bash_profile with the following lines:</p>
<pre class="brush: xml;">
export PATH=/usr/local/bin:$PATH
export LD_LIBRARY_PATH=/opt/subversion/lib/:$LD_LIBRARY_PATH
</pre>
<p>Then I downloaded a fresh Ganymede installation and using the new Software Updates I added the Subclipse update site (http://subclipse.tigris.org/update_1.4.x) and installed that.  Finally I was able to see the subversion information in Eclipse.</p>
<p>So while just trying to get subversion support I lost a few hours and also ended up upgrading to Subversion 1.5 just to get it in place.   Given the out-of-the-box experience I have to admit I was frustrated,  I realize that Subversive is a incubator project but I would have through getting it to work on a mac would have been much easier.   Maybe someone can provide a guide so I understand what I did wrong &#8211; in the meantime its back to Subclipse (and wondering what problems I&#8217;ll find).<br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fiveclouds.com/2008/07/16/getting-subversion-on-ganymede-leopard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
