<?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>linsec.ca blog &#187; subversion</title>
	<atom:link href="http://linsec.ca/blog/tag/subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://linsec.ca/blog</link>
	<description>You can have it right, or you can have it now.  But you can&#039;t have it right now.</description>
	<lastBuildDate>Mon, 23 Jan 2012 23:38:17 +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>Dissecting part of a subversion repo to git</title>
		<link>http://linsec.ca/blog/2011/10/29/dissecting-part-of-a-subversion-repo-to-git/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dissecting-part-of-a-subversion-repo-to-git</link>
		<comments>http://linsec.ca/blog/2011/10/29/dissecting-part-of-a-subversion-repo-to-git/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 19:14:48 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=1027</guid>
		<description><![CDATA[Well, that was pretty easy to figure out. As per my last post, I was going to try to break out the AIDE+gpg part of the Annvix tools subversion repo to be it&#8217;s own git repo. It was scary simple. First, the location of AIDE+gpg in the subversion repo was &#8220;tools/AIDE+gpg&#8221; and it had one [...]]]></description>
			<content:encoded><![CDATA[<p>Well, that was pretty easy to figure out.  As per my last post, I was going to try to break out the AIDE+gpg part of the Annvix tools subversion repo to be it&#8217;s own git repo.  It was scary simple.</p>
<p>First, the location of AIDE+gpg in the subversion repo was &#8220;tools/AIDE+gpg&#8221; and it had one sub-directory, &#8220;trunk&#8221;.  I never did end up using tags or branches or anything there.  So the entire step from start to finish to do it was as follows:</p>
<pre>
git init AIDE
cd AIDE
echo "vdanen = Vincent Danen <[my email]>" >authors.txt
git svn init -T trunk svn+ssh://[repo]/tools/AIDE+gpg --no-metadata
git svn fetch -A authors.txt
git init --bare ../tmp
cd ../tmp
git symbolic-ref HEAD refs/heads/trunk
cd ../AIDE
git remote add bare ../tmp
git config remote.bare.push 'refs/remotes/*:refs/heads/*'
git push bare
cd ../tmp
git branch -a
git branch -m trunk master
mv tmp AIDE+gpg.git
</pre>
<p>Presto.  Done.  Apparently I should now put this repo somewhere public (like github).  I will figure that part out after lunch.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/10/29/dissecting-part-of-a-subversion-repo-to-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enterprise Subversion gets a boost with Cornerstone 2</title>
		<link>http://linsec.ca/blog/2010/12/04/enterprise-subversion-gets-a-boost-with-cornerstone-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=enterprise-subversion-gets-a-boost-with-cornerstone-2</link>
		<comments>http://linsec.ca/blog/2010/12/04/enterprise-subversion-gets-a-boost-with-cornerstone-2/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 15:15:15 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=882</guid>
		<description><![CDATA[Last week&#8217;s mac techmail was Enterprise Subversion gets a boost with Cornerstone 2 which looks at my favourite GUI subversion client on the Mac: Cornerstone. The new version has gotten a seriously sweet overhaul with a lot of really nice new features and tweaks. Cornerstone is, in my opinion, top of it&#8217;s class and there [...]]]></description>
			<content:encoded><![CDATA[<p>Last week&#8217;s mac techmail was <a href="http://blogs.techrepublic.com.com/mac/?p=860">Enterprise Subversion gets a boost with Cornerstone 2</a> which looks at my favourite GUI subversion client on the Mac: Cornerstone.  The new version has gotten a seriously sweet overhaul with a lot of really nice new features and tweaks.  Cornerstone is, in my opinion, top of it&#8217;s class and there are no other GUI subversion clients that come close (that I&#8217;ve tried).  I still use the commandline the most, but Cornerstone really gives me a new comprehensive view of my repositories, and any other repositories I want to poke at.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2010/12/04/enterprise-subversion-gets-a-boost-with-cornerstone-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work on remote Subversion repositories locally with Git</title>
		<link>http://linsec.ca/blog/2010/04/29/work-on-remote-subversion-repositories-locally-with-git/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=work-on-remote-subversion-repositories-locally-with-git</link>
		<comments>http://linsec.ca/blog/2010/04/29/work-on-remote-subversion-repositories-locally-with-git/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 14:36:30 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=743</guid>
		<description><![CDATA[This week&#8217;s techmail is Work on remote Subversion repositories locally with Git which talks about using Git locally to interface with a remote (or local, even) subversion repository. Involved in a project that uses Subversion as their version control system, but prefer to use Git? No problem. The svn-git plugin can make it seamless to [...]]]></description>
			<content:encoded><![CDATA[<p>This week&#8217;s techmail is <a href="http://blogs.techrepublic.com.com/opensource/?p=1468">Work on remote Subversion repositories locally with Git</a> which talks about using Git locally to interface with a remote (or local, even) subversion repository.  Involved in a project that uses Subversion as their version control system, but prefer to use Git?  No problem.  The svn-git plugin can make it seamless to work with a Subversion repository while you use Git locally.  It works really slick, and is definitely well worth it for people who prefer Git but have to make use of a Subversion repository.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2010/04/29/work-on-remote-subversion-repositories-locally-with-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Cornerstone to handle Subversion on the Mac</title>
		<link>http://linsec.ca/blog/2010/01/21/using-cornerstone-to-handle-subversion-on-the-mac/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-cornerstone-to-handle-subversion-on-the-mac</link>
		<comments>http://linsec.ca/blog/2010/01/21/using-cornerstone-to-handle-subversion-on-the-mac/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 20:25:35 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=677</guid>
		<description><![CDATA[This week&#8217;s mac techmail is Using Cornerstone to handle Subversion on the Mac. Subversion is my favourite VCS; I moved to it from CVS years ago. Git is still pretty new to me and one day I may invest more time into using it more fully, but subversion still has my heart, so to speak. [...]]]></description>
			<content:encoded><![CDATA[<p>This week&#8217;s mac techmail is <a href="http://blogs.techrepublic.com.com/mac/?p=295">Using Cornerstone to handle Subversion on the Mac</a>.  Subversion is my favourite VCS; I moved to it from CVS years ago.  Git is still pretty new to me and one day I may invest more time into using it more fully, but subversion still has my heart, so to speak.  So this tip is about a commercial svn GUI client for OS X: Cornerstone.  As far as I&#8217;m concerned, it is a best-of-breed app for handling subversion.  I&#8217;ve tried the others, and Cornerstone is definitely top-notch.  This tip introduces you to Cornerstone and some of it&#8217;s features.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2010/01/21/using-cornerstone-to-handle-subversion-on-the-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kerberos fun Pt 2</title>
		<link>http://linsec.ca/blog/2009/07/16/kerberos-fun-pt-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kerberos-fun-pt-2</link>
		<comments>http://linsec.ca/blog/2009/07/16/kerberos-fun-pt-2/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 03:48:59 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[kerberos]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=537</guid>
		<description><![CDATA[Ok, this time the word &#8220;fun&#8221; is sarcastic. I had it working this afternoon and couldn&#8217;t figure out why it all of a sudden stopped working or&#8230; at least&#8230; subversion via kerberos. I was getting this error whenever I did a &#8220;svn ls http://svn.example.com/svn/anthill/ on my server): ah_post_send (#0), code is 401 (want 401), WWW-Authenticate [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, this time the word &#8220;fun&#8221; is sarcastic.  I had it working this afternoon and couldn&#8217;t figure out why it all of a sudden stopped working or&#8230; at least&#8230; subversion via kerberos.  I was getting this error whenever I did a &#8220;svn ls http://svn.example.com/svn/anthill/ on my server):  </p>
<pre>
ah_post_send (#0), code is 401 (want 401), WWW-Authenticate is Negotiate, Basic realm="Kerberos Login"
auth: Got challenge (code 401).
auth: Got 'Negotiate' challenge.
auth: Got 'Basic' challenge.
auth: Trying Negotiate challenge...
2009-07-16 20:49:37.593 svn[6357:10b] *** NSInvocation: warning: object 0x1005dc040 of class 'ReplicaFile' does not implement methodSignatureForSelector: -- trouble ahead
2009-07-16 20:49:37.594 svn[6357:10b] *** NSInvocation: warning: object 0x1005dc040 of class 'ReplicaFile' does not implement doesNotRecognizeSelector: -- abort
[1]    6357 trace trap  svn -vv ls http://svn.example.com/svn/anthill/
</pre>
<p>Googling it showed <a href="http://www.svnforum.org/2017/viewtopic.php?t=8009&#038;sid=7bd9dc113ea5ff181ebbeaa959ee5234" rel="nofollow">one other guy</a> who had it and never had an answer to his question.</p>
<p>Persistence is the codeword of the day, so I finally figured it out.  Seems that OS X does things a little wonky with kerberos.  A tutorial I read about using mod_auth_kerb indicated you had to use the hostname of the server, regardless of any virtualhost names (so my server name is hades, the virtualhost alias is svn; the made-up domain is, originally, example.com).  Safari kept popping up the authentication dialog whenever I tried accessing the repository, which is not at all what I wanted.  I had to ktadd a new principle (HTTP/svn.example.com) with the virtualhost alias (which the tutorial said _not_ to do).  Then Safari started working, but svn bombed.</p>
<p>Of course, in Fedora 11, none of this was a problem.  But here&#8217;s the weird part: klist on F11 showed HTTP/hades.example.com (from subversion or firefox), whereas on OS X subversion crapped out and crashed and Safari showed HTTP/svn.example.com.  So I decided to see what firefox on OS X would do and it (properly) used HTTP/hades.example.com.</p>
<p>Now, the weirdest part is that svn is working again!  Why?  For some reason (and I&#8217;m not quite sure whether I should be blaming OS X here or neon or a combination of the two), svn is not initiating obtaining a ticket for HTTP/hades.example.com.  I&#8217;m not sure why, because on F11 it did.  If I kdestroy and kinit (so I only have krbtgt&#8217;s ticket), svn craps out.  However, once I used Firefox to obtain the ticket, svn could re-use it and all worked well.  If I remove the HTTP/svn.example.com principle on the server, svn still doesn&#8217;t work and neither does Safari (I get the login dialog).  Obviously that&#8217;s not my problem.  I&#8217;m wondering if these Collab binaries built for OS X are messed up somehow; I&#8217;ll have to try from fink or build from source.</p>
<p>This was like pulling teeth tonight.  Definitely an interesting puzzle that I probably could have done without.  It&#8217;ll be interesting to see if other svn builds on OS X do the same thing (of course, I could dispense with making svn use GSSAPI for this, but half the fun is seeing how many passwords I _don&#8217;t_ need).  At this point I have no real idea why svn even worked at all in the first place &#8212; unless during the course of testing with Firefox I already had HTTP/hades.example.com&#8217;s ticket.  Hmmm&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2009/07/16/kerberos-fun-pt-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Manage dotfile configuration with subversion</title>
		<link>http://linsec.ca/blog/2009/06/30/manage-dotfile-configuration-with-subversion/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=manage-dotfile-configuration-with-subversion</link>
		<comments>http://linsec.ca/blog/2009/06/30/manage-dotfile-configuration-with-subversion/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 15:07:59 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=516</guid>
		<description><![CDATA[Last week&#8217;s Techmail was Manage dotfile configuration with subversion which goes into use subversion to manage all those pesky little .foo files in $HOME. It uses a combination of subversion and make to handle it and works quite well, although the Makefile could probably be tweaked to be less annoying. I don&#8217;t have the make-foo [...]]]></description>
			<content:encoded><![CDATA[<p>Last week&#8217;s Techmail was <a href="http://blogs.techrepublic.com.com/opensource/?p=707">Manage dotfile configuration with subversion</a> which goes into use subversion to manage all those pesky little .foo files in $HOME.  It uses a combination of subversion and make to handle it and works quite well, although the Makefile could probably be tweaked to be less annoying.  I don&#8217;t have the make-foo to do that (and this works), but if anyone has suggestions on how to simplify/compress it, I&#8217;d love to hear it.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2009/06/30/manage-dotfile-configuration-with-subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting Subversion repositories to Git</title>
		<link>http://linsec.ca/blog/2009/03/24/converting-subversion-repositories-to-git/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=converting-subversion-repositories-to-git</link>
		<comments>http://linsec.ca/blog/2009/03/24/converting-subversion-repositories-to-git/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 14:20:46 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=467</guid>
		<description><![CDATA[This week&#8217;s TechMail is Converting Subversion repositories to Git. This is a small primer on how to migrate from using Subversion for version control to using Git instead. I&#8217;m still quite a big fan of subversion, but git is pretty cool too&#8230; I can definitely see the appeal of git for larger projects or projects [...]]]></description>
			<content:encoded><![CDATA[<p>This week&#8217;s TechMail is <a href="http://blogs.techrepublic.com.com/opensource/?p=482">Converting Subversion repositories to Git</a>.  This is a small primer on how to migrate from using Subversion for version control to using Git instead.  I&#8217;m still quite a big fan of subversion, but git is pretty cool too&#8230; I can definitely see the appeal of git for larger projects or projects with lots of contributors.  Anyways, if you&#8217;ve thought about using git but are currently using subversion, take heart as it&#8217;s easy to do. Certainly much easier than converting from CVS to subversion was.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2009/03/24/converting-subversion-repositories-to-git/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Check out subversion repositories with ViewVC</title>
		<link>http://linsec.ca/blog/2009/02/10/check-out-subversion-repositories-with-viewvc/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=check-out-subversion-repositories-with-viewvc</link>
		<comments>http://linsec.ca/blog/2009/02/10/check-out-subversion-repositories-with-viewvc/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 21:18:06 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=409</guid>
		<description><![CDATA[This week&#8217;s TechMail is Check out subversion repositories with ViewVC which is pretty much just about installing and configuring the ViewVC web-based tool to view subversion repositories (works with cvs too).]]></description>
			<content:encoded><![CDATA[<p>This week&#8217;s TechMail is <a href="http://blogs.techrepublic.com.com/opensource/?p=364">Check out subversion repositories with ViewVC</a> which is pretty much just about installing and configuring the ViewVC web-based tool to view subversion repositories (works with cvs too).</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2009/02/10/check-out-subversion-repositories-with-viewvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zsh tab completion with subversion 1.5</title>
		<link>http://linsec.ca/blog/2008/11/08/zsh-tab-completion-with-subversion-15/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=zsh-tab-completion-with-subversion-15</link>
		<comments>http://linsec.ca/blog/2008/11/08/zsh-tab-completion-with-subversion-15/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 17:13:03 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=310</guid>
		<description><![CDATA[This has ticked me off for a bit, and I finally decided to find out why. Tab completion in zsh was returning the following every time I tried to use it, after upgrading to subversion 1.5: _arguments:comparguments:303: invalid argument: ARG Looks like the reason is that the subversion developers changed &#8220;arg&#8221; to &#8220;ARG&#8221;. So when [...]]]></description>
			<content:encoded><![CDATA[<p>This has ticked me off for a bit, and I finally decided to find out why.  Tab completion in zsh was returning the following every time I tried to use it, after upgrading to subversion 1.5:</p>
<p><code>_arguments:comparguments:303: invalid argument: ARG</code></p>
<p>Looks like the reason is that the subversion developers changed &#8220;arg&#8221; to &#8220;ARG&#8221;.  So when I googled I found this helpful post:</p>
<p><a href="http://mkoga.com/zsh-tab-completion-fix-for-subversion-1-5">ZSH Tab Completion Fix for Subversion 1.5</a> which basically points to this <a href="http://gvn.googlecode.com/svn/trunk/contrib/zsh/_subversion">new _subversion functions file</a> to be plopped into the zsh functions directory (/usr/share/zsh/4.3.4/functions; change the version to suit of course &#8212; the directory may also be slightly different on Linux vs OS X).</p>
<p>Now tab completion works properly and life is good.  =)</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2008/11/08/zsh-tab-completion-with-subversion-15/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Subversion 1.5.x upgrade oddities</title>
		<link>http://linsec.ca/blog/2008/10/07/subversion-15x-upgrade-oddities/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=subversion-15x-upgrade-oddities</link>
		<comments>http://linsec.ca/blog/2008/10/07/subversion-15x-upgrade-oddities/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 00:07:29 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=287</guid>
		<description><![CDATA[Found some weirdness with subversion 1.5 today. I had previously upgraded to 1.5.1 when it came out (from 1.4.x) and found I couldn&#8217;t commit to svn+ssh urls. 1.5.2 fixes that, but has a naughty habbit of upgrading the repository format behind your back. So, if you have a working copy you checked out with 1.4.x [...]]]></description>
			<content:encoded><![CDATA[<p>Found some weirdness with subversion 1.5 today.  I had previously upgraded to 1.5.1 when it came out (from 1.4.x) and found I couldn&#8217;t commit to svn+ssh urls.  1.5.2 fixes that, but has a naughty habbit of upgrading the repository format behind your back.  So, if you have a working copy you checked out with 1.4.x and then do anything in that working copy it upgrades it to the new format for 1.5.x.  Sadly, it doesn&#8217;t tell you it&#8217;s doing this and as a result, those working copies are essentially useless if you need to back out to 1.4.x for whatever reason.</p>
<p>Not only that, however, but subversion will upgrade parts of your working copy piecemeal.  For instance, I keep all my web development stuff in ~/svn/websites/.  So after upgrading to 1.5.2 today I did some work in ~/svn/websites/intranet/ and that directory, and it&#8217;s subdirectories, were upgraded to the new format.  The top-level directory, however, and the rest of the working copy, were not (they were still using format 8 rather than format 9).</p>
<p>I guess with a CLI client this might not matter so much, but it caused me some grief using <a href="http://www.zennaware.com/cornerstone/">Cornerstone</a>, a commercial svn client.  Fortunately, the author is super-responsive and pointed me to <a href="http://svn.collab.net/repos/svn/trunk/tools/client-side/change-svn-wc-format.py">this change-svn-wc-format.py script</a> which I can use to update all my working copies (I&#8217;m not trusting subversion to do it properly for me right now).</p>
<p>Anyways, if anyone else gets in this same boat, here&#8217;s some info on how to resolve it.  I like using Cornerstone on my mac (it&#8217;s about the only GUI svn client I can stand); otherwise I&#8217;d be using the CLI client and probably never would have found this.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2008/10/07/subversion-15x-upgrade-oddities/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

