<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comments on: BASH your SVN and Trac installation!</title>
	<atom:link href="http://ariejan.net/2007/06/12/bash-your-svn-and-trac-installation/feed/" rel="self" type="application/rss+xml" />
	<link>http://ariejan.net/2007/06/12/bash-your-svn-and-trac-installation/</link>
	<description>May The Source Be With You.</description>
	<pubDate>Tue, 06 Jan 2009 10:11:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Arun Agrawal</title>
		<link>http://ariejan.net/2007/06/12/bash-your-svn-and-trac-installation/comment-page-1/#comment-3843</link>
		<dc:creator>Arun Agrawal</dc:creator>
		<pubDate>Tue, 04 Dec 2007 12:10:05 +0000</pubDate>
		<guid isPermaLink="false">http://beta.ariejan.net/?p=123#comment-3843</guid>
		<description>yeah this is cool</description>
		<content:encoded><![CDATA[<p>yeah this is cool</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Organise your bioinformatics projects using Subversion and Trac: part 2 &#171; What You&#8217;re Doing Is Rather Desperate</title>
		<link>http://ariejan.net/2007/06/12/bash-your-svn-and-trac-installation/comment-page-1/#comment-1432</link>
		<dc:creator>Organise your bioinformatics projects using Subversion and Trac: part 2 &#171; What You&#8217;re Doing Is Rather Desperate</dc:creator>
		<pubDate>Thu, 04 Oct 2007 14:23:15 +0000</pubDate>
		<guid isPermaLink="false">http://beta.ariejan.net/?p=123#comment-1432</guid>
		<description>[...] directory in ~/projects, it&#8217;s going to get tedious. Luckily, Ariejan de Vroom has written a small shell script to automate the procedure. Edit it to your taste, make it executable, supply it with the name of [...]</description>
		<content:encoded><![CDATA[<p>[...] directory in ~/projects, it&#8217;s going to get tedious. Luckily, Ariejan de Vroom has written a small shell script to automate the procedure. Edit it to your taste, make it executable, supply it with the name of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniel</title>
		<link>http://ariejan.net/2007/06/12/bash-your-svn-and-trac-installation/comment-page-1/#comment-297</link>
		<dc:creator>daniel</dc:creator>
		<pubDate>Sat, 30 Jun 2007 09:35:23 +0000</pubDate>
		<guid isPermaLink="false">http://beta.ariejan.net/?p=123#comment-297</guid>
		<description>locate post-commit

In feisty you can find it in:
/usr/share/doc/trac/contrib/trac-post-commit-hook.gz</description>
		<content:encoded><![CDATA[<p>locate post-commit</p>
<p>In feisty you can find it in:<br />
/usr/share/doc/trac/contrib/trac-post-commit-hook.gz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Goodenough</title>
		<link>http://ariejan.net/2007/06/12/bash-your-svn-and-trac-installation/comment-page-1/#comment-295</link>
		<dc:creator>David Goodenough</dc:creator>
		<pubDate>Thu, 28 Jun 2007 13:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://beta.ariejan.net/?p=123#comment-295</guid>
		<description>I have the Debian version of trac, and it does not come with a contrib directory.  Any pointers as to where I can get this script?</description>
		<content:encoded><![CDATA[<p>I have the Debian version of trac, and it does not come with a contrib directory.  Any pointers as to where I can get this script?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ariejan</title>
		<link>http://ariejan.net/2007/06/12/bash-your-svn-and-trac-installation/comment-page-1/#comment-298</link>
		<dc:creator>Ariejan</dc:creator>
		<pubDate>Wed, 20 Jun 2007 08:41:41 +0000</pubDate>
		<guid isPermaLink="false">http://beta.ariejan.net/?p=123#comment-298</guid>
		<description>@Neo:

The sed command takes the post-commit hook file that comes with Trac and replace "EXAMPLE" with the name of your repository name. It then stores it in your Subversion's 'hook' directory.

When this post-commit file is executable (hence the chmod  x), it automatically passes information from the commit you made to Trac. This is what makes the Trac-SVN integration work.</description>
		<content:encoded><![CDATA[<p>@Neo:</p>
<p>The sed command takes the post-commit hook file that comes with Trac and replace &#8220;EXAMPLE&#8221; with the name of your repository name. It then stores it in your Subversion&#8217;s &#8216;hook&#8217; directory.</p>
<p>When this post-commit file is executable (hence the chmod  x), it automatically passes information from the commit you made to Trac. This is what makes the Trac-SVN integration work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neo</title>
		<link>http://ariejan.net/2007/06/12/bash-your-svn-and-trac-installation/comment-page-1/#comment-296</link>
		<dc:creator>Neo</dc:creator>
		<pubDate>Wed, 20 Jun 2007 06:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://beta.ariejan.net/?p=123#comment-296</guid>
		<description>Cool stuff!!    Thanks  Ariejan

However, can you please explain following two lines in details?

sed s/EXAMPLE/$1/g /usr/share/trac/contrib/post-commit &#62; /var/lib/svn/$1/hooks/post-commit
chmod  x /var/lib/svn/$1/hooks/post-commit


Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Cool stuff!!    Thanks  Ariejan</p>
<p>However, can you please explain following two lines in details?</p>
<p>sed s/EXAMPLE/$1/g /usr/share/trac/contrib/post-commit &gt; /var/lib/svn/$1/hooks/post-commit<br />
chmod  x /var/lib/svn/$1/hooks/post-commit</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
