<?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: Installing Git and gitosis on Ubuntu</title>
	<atom:link href="http://www.markrichman.com/2008/06/16/installing-git-and-gitosis-on-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markrichman.com/2008/06/16/installing-git-and-gitosis-on-ubuntu/</link>
	<description>Cloud Computing Technologist. Application Architect. Experienced Consultant.</description>
	<lastBuildDate>Thu, 14 Apr 2011 21:43:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: mrichman</title>
		<link>http://www.markrichman.com/2008/06/16/installing-git-and-gitosis-on-ubuntu/comment-page-1/#comment-828</link>
		<dc:creator>mrichman</dc:creator>
		<pubDate>Sun, 23 Jan 2011 01:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.markrichman.com/?p=50#comment-828</guid>
		<description>Issues or questions about Gitosis should be directed here: &lt;a href=&quot;https://github.com/res0nat0r/gitosis&quot; rel=&quot;nofollow&quot;&gt;https://github.com/res0nat0r/g...&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Issues or questions about Gitosis should be directed here: <a href="https://github.com/res0nat0r/gitosis" rel="nofollow">https://github.com/res0nat0r/g&#8230;</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tenach</title>
		<link>http://www.markrichman.com/2008/06/16/installing-git-and-gitosis-on-ubuntu/comment-page-1/#comment-827</link>
		<dc:creator>tenach</dc:creator>
		<pubDate>Sat, 22 Jan 2011 04:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.markrichman.com/?p=50#comment-827</guid>
		<description>I am getting a traceback error and am not sure what to do with it: &lt;a href=&quot;http://tlms.pastebin.com/pQi0vdus&quot; rel=&quot;nofollow&quot;&gt;http://tlms.pastebin.com/pQi0v...&lt;/a&gt;  What would your suggestions be? I have triple-checked to make sure I am following everything properly.&lt;br&gt;&lt;br&gt;Thank you much for your help.</description>
		<content:encoded><![CDATA[<p>I am getting a traceback error and am not sure what to do with it: <a href="http://tlms.pastebin.com/pQi0vdus" rel="nofollow">http://tlms.pastebin.com/pQi0v&#8230;</a>  What would your suggestions be? I have triple-checked to make sure I am following everything properly.</p>
<p>Thank you much for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jdoerring</title>
		<link>http://www.markrichman.com/2008/06/16/installing-git-and-gitosis-on-ubuntu/comment-page-1/#comment-826</link>
		<dc:creator>Jdoerring</dc:creator>
		<pubDate>Thu, 13 Jan 2011 08:52:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.markrichman.com/?p=50#comment-826</guid>
		<description>I posed this on the &lt;a href=&quot;http://scie.nti.st&quot; rel=&quot;nofollow&quot;&gt;scie.nti.st&lt;/a&gt; article but they have a comment list a mile long so here it is again.&lt;br&gt;&lt;br&gt;I&#039;d like to add on one thing that I ran into when installing Git and Gitosis on my Ubuntu 10.10 server which I installed with encrypted home directories.&lt;br&gt;&lt;br&gt;When I was configuring my server for SSH, I changed my sshd_config to include this entry:&lt;br&gt;    AuthorizedKeysFile /etc/.ssh/%u/authorized_keys&lt;br&gt;&lt;br&gt;From this you can see that I created a /etc/.ssh directory and a sub directory for each user containing the file authorized_keys.  Also, I made the user the owner of their respective folder.&lt;br&gt;&lt;br&gt;Gitosis uses a post-update hook to update the git user&#039;s authorized_keys file to include each of the public keys from the gitosis-admin/keydir.  The problem was that the default location that gitosis expected the authorized_keys file to be in was /home/git/.ssh/ but I moved it to /etc/.ssh/git.  To remedy this I had to add the following to gitosis.conf:&lt;br&gt;    [gitosis]&lt;br&gt;    ssh-authorized-keys-path = /etc/.ssh/git/authorized_keys&lt;br&gt;&lt;br&gt;It took me quite a bit of messing around to figure this all out, I hope it will save someone else the pain.</description>
		<content:encoded><![CDATA[<p>I posed this on the <a href="http://scie.nti.st" rel="nofollow">scie.nti.st</a> article but they have a comment list a mile long so here it is again.</p>
<p>I&#39;d like to add on one thing that I ran into when installing Git and Gitosis on my Ubuntu 10.10 server which I installed with encrypted home directories.</p>
<p>When I was configuring my server for SSH, I changed my sshd_config to include this entry:<br />    AuthorizedKeysFile /etc/.ssh/%u/authorized_keys</p>
<p>From this you can see that I created a /etc/.ssh directory and a sub directory for each user containing the file authorized_keys.  Also, I made the user the owner of their respective folder.</p>
<p>Gitosis uses a post-update hook to update the git user&#39;s authorized_keys file to include each of the public keys from the gitosis-admin/keydir.  The problem was that the default location that gitosis expected the authorized_keys file to be in was /home/git/.ssh/ but I moved it to /etc/.ssh/git.  To remedy this I had to add the following to gitosis.conf:<br />    [gitosis]<br />    ssh-authorized-keys-path = /etc/.ssh/git/authorized_keys</p>
<p>It took me quite a bit of messing around to figure this all out, I hope it will save someone else the pain.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paz</title>
		<link>http://www.markrichman.com/2008/06/16/installing-git-and-gitosis-on-ubuntu/comment-page-1/#comment-822</link>
		<dc:creator>Paz</dc:creator>
		<pubDate>Tue, 30 Nov 2010 04:54:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.markrichman.com/?p=50#comment-822</guid>
		<description>Just tried 3 other tutorials that were not clear on copying my public key from client to server and wasted 30mins. Yours got me there in 2 mins. thanks.</description>
		<content:encoded><![CDATA[<p>Just tried 3 other tutorials that were not clear on copying my public key from client to server and wasted 30mins. Yours got me there in 2 mins. thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Redmine with GIT Repository Setup on Ubuntu &#171; Ryan Alberts</title>
		<link>http://www.markrichman.com/2008/06/16/installing-git-and-gitosis-on-ubuntu/comment-page-1/#comment-788</link>
		<dc:creator>Redmine with GIT Repository Setup on Ubuntu &#171; Ryan Alberts</dc:creator>
		<pubDate>Wed, 21 Apr 2010 23:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.markrichman.com/?p=50#comment-788</guid>
		<description>[...] sudo vi ../mods-enabled/proxy.conf  For gitosis I used this setup page:  http://www.markrichman.com/2008/06/16/installing-git-and-gitosis-on-ubuntu/ Creating users and using gitosis: [...]</description>
		<content:encoded><![CDATA[<p>[...] sudo vi ../mods-enabled/proxy.conf  For gitosis I used this setup page:  http://www.markrichman.com/2008/06/16/installing-git-and-gitosis-on-ubuntu/ Creating users and using gitosis: [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

