<?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>blog.lundscape.com &#187; Subversion</title>
	<atom:link href="http://blog.lundscape.com/category/subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lundscape.com</link>
	<description>The Linux Journey</description>
	<lastBuildDate>Thu, 15 Apr 2010 20:06:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ZigVersion</title>
		<link>http://blog.lundscape.com/2009/11/zigversion/</link>
		<comments>http://blog.lundscape.com/2009/11/zigversion/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 18:05:33 +0000</pubDate>
		<dc:creator>Zachary Lund</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Clarissa]]></category>
		<category><![CDATA[MediaWiki]]></category>
		<category><![CDATA[ZigVersion]]></category>

		<guid isPermaLink="false">http://blog.lundscape.com/?p=258</guid>
		<description><![CDATA[I prefer to do all of my Subversion work from the command line, but I realize that not all people are like me. Clarissa and I have been using a wiki to keep track of most of our shared information (including our wedding preparations), but our wiki does not work well for content like spreadsheets. [...]]]></description>
			<content:encoded><![CDATA[<p>I prefer to do all of my <a href="http://subversion.tigris.org/">Subversion</a> work from the command line, but I realize that not all people are like me. Clarissa and I have been using a <a href="http://www.mediawiki.org/">wiki</a> to keep track of most of our shared information (including our wedding preparations), but our wiki does not work well for content like spreadsheets. Therefore, I decided to try out a Subversion repository. After some initial searching for graphical clients, I found <a href="http://zigversion.com/">ZigVersion</a>. It is a simple graphical Subversion client for Mac OS X. It took a little bit to explain how it worked and how to use it to Clarissa, but now we have been sharing and editing non-wiki-friendly files for a few weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lundscape.com/2009/11/zigversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn switch</title>
		<link>http://blog.lundscape.com/2009/03/svn-switch/</link>
		<comments>http://blog.lundscape.com/2009/03/svn-switch/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 19:11:23 +0000</pubDate>
		<dc:creator>Zachary Lund</dc:creator>
				<category><![CDATA[Subversion]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[working copy]]></category>

		<guid isPermaLink="false">http://blog.lundscape.com/?p=65</guid>
		<description><![CDATA[I&#8217;ve struggled with this command for a while. It should let me change the URL of a directory in a repository, but I&#8217;ve never had any luck. It turns out it wasn&#8217;t so hard. Running &#8220;svn info&#8221; shows the current URL and that it ends in &#8220;cosc170&#8243;.
zlund@kastria:~/compilers$ svn info
Path: .
URL: svn+ssh://dakara/home/zac/repositories/marquette/cosc170
Repository Root: svn+ssh://dakara/home/zac/repositories/marquette
Repository UUID: e0bd8123-bfd5-445b-929b-77a6dd82f418
Revision: [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve struggled with this command for a while. It should let me change the URL of a directory in a repository, but I&#8217;ve never had any luck. It turns out it wasn&#8217;t so hard. Running &#8220;svn info&#8221; shows the current URL and that it ends in &#8220;cosc170&#8243;.</p>
<pre>zlund@kastria:~/compilers$ svn info
Path: .
URL: svn+ssh://dakara/home/zac/repositories/marquette/cosc170
Repository Root: svn+ssh://dakara/home/zac/repositories/marquette
Repository UUID: e0bd8123-bfd5-445b-929b-77a6dd82f418
Revision: 29
Node Kind: directory
Schedule: normal
Last Changed Author: zac
Last Changed Rev: 27
Last Changed Date: 2009-01-31 15:06:57 -0600 (Sat, 31 Jan 2009)</pre>
<p>I want to change &#8220;cosc170&#8243; to &#8220;cosc/170&#8243; because I already made this change in the repository and the URL is out of date on this working copy. Therefore, I type &#8220;svn switch&#8221; followed by the new URL and then a &#8220;.&#8221; to specify the current directory.</p>
<pre>zlund@kastria:~/compilers$ svn switch svn+ssh://dakara/home/zac/repositories/marquette/cosc/170 .
At revision 36.</pre>
<p>It updates the URL and the working copy. Now a &#8220;svn info&#8221; shows the correct URL and the updated revision number.</p>
<pre>zlund@kastria:~/compilers$ svn info
Path: .
URL: svn+ssh://dakara/home/zac/repositories/marquette/cosc/170
Repository Root: svn+ssh://dakara/home/zac/repositories/marquette
Repository UUID: e0bd8123-bfd5-445b-929b-77a6dd82f418
Revision: 36
Node Kind: directory
Schedule: normal
Last Changed Author: zac
Last Changed Rev: 33
Last Changed Date: 2009-03-09 23:18:47 -0500 (Mon, 09 Mar 2009)</pre>
<p>When the directory structure of a repository changes, it isn&#8217;t necessary to check out a new copy. The existing working copy can be updated to reflect the change to the repository.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lundscape.com/2009/03/svn-switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
