<?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>non-random ramble &#187; svn</title>
	<atom:link href="http://jimbarritt.com/non-random/category/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimbarritt.com/non-random</link>
	<description>adventures in code</description>
	<lastBuildDate>Tue, 20 Sep 2011 13:16:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Add a proxy to subversion configuration</title>
		<link>http://jimbarritt.com/non-random/2010/07/23/add-a-proxy-to-subversion-configuration/</link>
		<comments>http://jimbarritt.com/non-random/2010/07/23/add-a-proxy-to-subversion-configuration/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 12:50:33 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=597</guid>
		<description><![CDATA[If you need to access subversion from outside a proxy, you need to edit ~/.subversion/servers and add this: Since Intellij 9.0.3 you now also need to set this information in the svn settings.]]></description>
			<content:encoded><![CDATA[<p><a href="http://jimbarritt.com/non-random/wp-content/uploads/2010/07/subversion.jpg" rel="lightbox[597]"><img src="http://jimbarritt.com/non-random/wp-content/uploads/2010/07/subversion.jpg" alt="" title="subversion" width="500" /></a></p>
<p>If you need to access subversion from outside a proxy, you need to edit <code>~/.subversion/servers</code> and add this:</p>
<pre name='code' class='java:nogutter:nocontrols'>
[groups]
mySubversionGroup = *.some.domain
[mySubversionGroup]
http-proxy-host = my.proxy.server
http-proxy-port = 8080
</pre>
<p>Since Intellij 9.0.3 you now also need to set this information in the svn settings.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F07%2F23%2Fadd-a-proxy-to-subversion-configuration%2F&amp;title=Add%20a%20proxy%20to%20subversion%20configuration"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/07/23/add-a-proxy-to-subversion-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn ignore on the command line</title>
		<link>http://jimbarritt.com/non-random/2009/05/25/svn-ignore-on-the-command-line/</link>
		<comments>http://jimbarritt.com/non-random/2009/05/25/svn-ignore-on-the-command-line/#comments</comments>
		<pubDate>Mon, 25 May 2009 19:43:00 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/2009/05/25/svn-ignore-on-the-command-line/</guid>
		<description><![CDATA[How to ignore files on command line with subversion. I&#8217;ve had to google this so many times I thought I would post it. svn propedit svn:ignore ./some_path You need this if you want to ignore more than one pattern. Will open a text editor where you can add multiple entries. You can also do: svn [...]]]></description>
			<content:encoded><![CDATA[<p>How to ignore files on command line with subversion.</p>
<p>I&#8217;ve had to google this so many times I thought I would post it.</p>
<pre name="code" class="html:nogutter:nocontrols">
svn propedit svn:ignore ./some_path
</pre>
<p>You need this if you want to ignore more than one pattern.<br />
Will open a text editor where you can add multiple entries.</p>
<p>You can also do:</p>
<pre name="code" class="html:nogutter:nocontrols">
svn propset svn:ignore -F file_to_ignore ./some_path
</pre>
<p>The -F means ignore a file.</p>
<p>for example:</p>
<p>For directory target</p>
<pre name="code" class="html:nogutter:nocontrols">
svn propset svn:ignore target .
</pre>
<p>ignores the target directory in the current dir.</p>
<p>You have to remember to commit the directory you have just set the property on:</p>
<pre name="code" class="html:nogutter:nocontrols">
svn ci -m "Setting the ignore property to ignore target directory" -N .
</pre>
<p>The -N means non-recursive so just commit the current directory.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2009%2F05%2F25%2Fsvn-ignore-on-the-command-line%2F&amp;title=svn%20ignore%20on%20the%20command%20line"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2009/05/25/svn-ignore-on-the-command-line/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tortoise SVN has no checkout option</title>
		<link>http://jimbarritt.com/non-random/2008/05/23/tortoise-svn-has-no-checkout-option/</link>
		<comments>http://jimbarritt.com/non-random/2008/05/23/tortoise-svn-has-no-checkout-option/#comments</comments>
		<pubDate>Fri, 23 May 2008 10:52:10 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[anecdotes]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/2008/05/23/tortoise-svn-has-no-checkout-option/</guid>
		<description><![CDATA[It wont have one if the directory you are in is already checked out! This can happen if at some point you check out without specifying the full path. eg: svn co svnserver/myproject/trunk ~/myproject rather than svn co svnserver/myproject/trunk ~/myproject/trunk]]></description>
			<content:encoded><![CDATA[<p>It wont have one if the directory you are in is already checked out!</p>
<p>This can happen if at some point you check out without specifying the full path.</p>
<p>eg:</p>
<p><code>svn co svnserver/myproject/trunk ~/myproject</code></p>
<p>rather than </p>
<p><code>svn co svnserver/myproject/trunk ~/myproject/trunk</code></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2008%2F05%2F23%2Ftortoise-svn-has-no-checkout-option%2F&amp;title=Tortoise%20SVN%20has%20no%20checkout%20option"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2008/05/23/tortoise-svn-has-no-checkout-option/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

