<?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 for Autopragmatic</title>
	<atom:link href="http://autopragmatic.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://autopragmatic.com</link>
	<description>Why can't stuff just work?</description>
	<lastBuildDate>Tue, 16 Feb 2010 18:05:31 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Hosting a git repository on dreamhost by Kris</title>
		<link>http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/comment-page-1/#comment-247</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Tue, 16 Feb 2010 18:05:31 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/#comment-247</guid>
		<description>Thanks for these instructions.  I&#039;m getting a &quot;unable to chdir or not a git archive&quot; error.  The path it is referring to is /home/myusername/sub.mydomain.com/test-repo/test-repo.git

I have a repository in submydomain.com/test-repo which has directories of branches, hooks, etc....

Any suggestions so I can get this to work?</description>
		<content:encoded><![CDATA[<p>Thanks for these instructions.  I&#8217;m getting a &#8220;unable to chdir or not a git archive&#8221; error.  The path it is referring to is /home/myusername/sub.mydomain.com/test-repo/test-repo.git</p>
<p>I have a repository in submydomain.com/test-repo which has directories of branches, hooks, etc&#8230;.</p>
<p>Any suggestions so I can get this to work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hosting a git repository on dreamhost by Naveen</title>
		<link>http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/comment-page-1/#comment-198</link>
		<dc:creator>Naveen</dc:creator>
		<pubDate>Tue, 20 Oct 2009 06:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/#comment-198</guid>
		<description>Thanks for publishing this guide. It is much better than other resources that I&#039;ve found. I do have a question, though. I have gotten everything working and have also successfully added .htaccess password-protection for my git repository, but now I want to give push as well as pull access to people other than myself. As you say in your writeup, it looks like:

$ git clone http://username@example.com/git/repo-name.git 

only gives read access. I don&#039;t really want to give all the people that I might collaborate with in the future shell access to my dreamhost account, is there a way that I can let them submit changes to the git repository using the .htaccess user/password system? 

Thanks very much,
Naveen.</description>
		<content:encoded><![CDATA[<p>Thanks for publishing this guide. It is much better than other resources that I&#8217;ve found. I do have a question, though. I have gotten everything working and have also successfully added .htaccess password-protection for my git repository, but now I want to give push as well as pull access to people other than myself. As you say in your writeup, it looks like:</p>
<p>$ git clone <a href="http://username@example.com/git/repo-name.git" rel="nofollow">http://username@example.com/git/repo-name.git</a> </p>
<p>only gives read access. I don&#8217;t really want to give all the people that I might collaborate with in the future shell access to my dreamhost account, is there a way that I can let them submit changes to the git repository using the .htaccess user/password system? </p>
<p>Thanks very much,<br />
Naveen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hosting a git repository on dreamhost by Eduardo Bacchi Kienetz</title>
		<link>http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/comment-page-1/#comment-197</link>
		<dc:creator>Eduardo Bacchi Kienetz</dc:creator>
		<pubDate>Mon, 21 Sep 2009 05:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/#comment-197</guid>
		<description>Actually you don&#039;t need git installed there.
Just mount the remote filesystem (directory) locally using sshfs:
sshfs -o workaround=rename -o idmap=user -C -o uid=1000 -o gid=100 user@mydreamhostdomain.com:/home/user/gitrepo.git localrepo.git

Where localrepo.git is an empty folder where the remote bare repository will be mounted.
It works perfectly here (I&#039;m at bluehost though), let me know if you have trouble.</description>
		<content:encoded><![CDATA[<p>Actually you don&#8217;t need git installed there.<br />
Just mount the remote filesystem (directory) locally using sshfs:<br />
sshfs -o workaround=rename -o idmap=user -C -o uid=1000 -o gid=100 <a href="mailto:user@mydreamhostdomain.com">user@mydreamhostdomain.com</a>:/home/user/gitrepo.git localrepo.git</p>
<p>Where localrepo.git is an empty folder where the remote bare repository will be mounted.<br />
It works perfectly here (I&#8217;m at bluehost though), let me know if you have trouble.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hosting a git repository on dreamhost by Hosting a git repository on dreamhost &#171; amitsamtani.com</title>
		<link>http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/comment-page-1/#comment-196</link>
		<dc:creator>Hosting a git repository on dreamhost &#171; amitsamtani.com</dc:creator>
		<pubDate>Tue, 15 Sep 2009 22:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/#comment-196</guid>
		<description>[...] last week I wanted to set up a git repository on dreamhost and came across this article on the Autopragmatic blog. The author provides easy step by step instructions to set up the [...]</description>
		<content:encoded><![CDATA[<p>[...] last week I wanted to set up a git repository on dreamhost and came across this article on the Autopragmatic blog. The author provides easy step by step instructions to set up the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hosting a git repository on dreamhost by Hosting my source code // Groby&#8217;s Coding Adventures</title>
		<link>http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/comment-page-1/#comment-192</link>
		<dc:creator>Hosting my source code // Groby&#8217;s Coding Adventures</dc:creator>
		<pubDate>Sun, 14 Jun 2009 22:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/#comment-192</guid>
		<description>[...] fees, and I&#8217;ll make $47 towards my hosting costs.) Autopragmatic has an excellent account on how to set up git on dreamhost. That&#8217;s not quite what I want though. First of all, quite a few git repositories are my [...]</description>
		<content:encoded><![CDATA[<p>[...] fees, and I&#8217;ll make $47 towards my hosting costs.) Autopragmatic has an excellent account on how to set up git on dreamhost. That&#8217;s not quite what I want though. First of all, quite a few git repositories are my [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redirect linux console beep to the sound card by Joolz</title>
		<link>http://autopragmatic.com/2009/01/19/redirect-linux-console-beep-to-the-sound-card/comment-page-1/#comment-191</link>
		<dc:creator>Joolz</dc:creator>
		<pubDate>Sun, 14 Jun 2009 14:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/?p=21#comment-191</guid>
		<description>I&#039;ve used your advice and made my soundcard beep on errors in gnome terminal, etc. 

But if I have any other device using my soundcard i.e rythmbox or amarok it doesn&#039;t work.. any ideas?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used your advice and made my soundcard beep on errors in gnome terminal, etc. </p>
<p>But if I have any other device using my soundcard i.e rythmbox or amarok it doesn&#8217;t work.. any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hosting a git repository on dreamhost by jj</title>
		<link>http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/comment-page-1/#comment-190</link>
		<dc:creator>jj</dc:creator>
		<pubDate>Thu, 30 Apr 2009 14:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/#comment-190</guid>
		<description>Nice guide! I followed it to the letter, but no repositories show up in gitweb. If I click on the &quot;TXT&quot; button, I see my repositories. I don&#039;t know why I don&#039;t see anything in the main interface. There is the header line (Project Description Owner Last Change), but nothing below it.</description>
		<content:encoded><![CDATA[<p>Nice guide! I followed it to the letter, but no repositories show up in gitweb. If I click on the &#8220;TXT&#8221; button, I see my repositories. I don&#8217;t know why I don&#8217;t see anything in the main interface. There is the header line (Project Description Owner Last Change), but nothing below it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hosting a git repository on dreamhost by lcmtwn</title>
		<link>http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/comment-page-1/#comment-189</link>
		<dc:creator>lcmtwn</dc:creator>
		<pubDate>Wed, 22 Apr 2009 15:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/#comment-189</guid>
		<description>This really helps me to setup git on Dreamhost. Thanks a lot.</description>
		<content:encoded><![CDATA[<p>This really helps me to setup git on Dreamhost. Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redirect linux console beep to the sound card by lisa</title>
		<link>http://autopragmatic.com/2009/01/19/redirect-linux-console-beep-to-the-sound-card/comment-page-1/#comment-188</link>
		<dc:creator>lisa</dc:creator>
		<pubDate>Wed, 22 Apr 2009 00:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/?p=21#comment-188</guid>
		<description>Nice</description>
		<content:encoded><![CDATA[<p>Nice</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hosting a git repository on dreamhost by links for 2009-04-17 &#171; .::灵狼天::.</title>
		<link>http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/comment-page-1/#comment-187</link>
		<dc:creator>links for 2009-04-17 &#171; .::灵狼天::.</dc:creator>
		<pubDate>Sat, 18 Apr 2009 00:12:29 +0000</pubDate>
		<guid isPermaLink="false">http://autopragmatic.com/2008/01/26/hosting-a-git-repository-on-dreamhost/#comment-187</guid>
		<description>[...] Hosting a git repository on dreamhost « Autopragmatic (tags: Dreamhost git) [...]</description>
		<content:encoded><![CDATA[<p>[...] Hosting a git repository on dreamhost « Autopragmatic (tags: Dreamhost git) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
