<?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>Nick Carroll &#187; Git</title>
	<atom:link href="http://ca.rroll.net/tag/git/feed/" rel="self" type="application/rss+xml" />
	<link>http://ca.rroll.net</link>
	<description>Metabolising caffeine into code</description>
	<lastBuildDate>Thu, 01 Sep 2011 04:18:03 +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>Git on Joyent Shared Accelerator</title>
		<link>http://ca.rroll.net/2009/11/21/git-on-joyent-shared-accelerator/</link>
		<comments>http://ca.rroll.net/2009/11/21/git-on-joyent-shared-accelerator/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 13:10:37 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Joyent]]></category>

		<guid isPermaLink="false">http://ca.rroll.net/?p=222</guid>
		<description><![CDATA[This is just a quick guide to setting up a remote Git repository on a Joyent shared accelerator. Log into your Joyent server and create your remote git repository. ssh host.joyent.us cd ~/git mkdir project.git cd project.git git --bare init chmod -x hooks exit Now on your local box create your project directory and push [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a quick guide to setting up a remote Git repository on a Joyent shared accelerator.</p>
<p>Log into your Joyent server and create your remote git repository.</p>
<p><code><br />
ssh host.joyent.us<br />
cd ~/git<br />
mkdir project.git<br />
cd project.git<br />
git --bare init<br />
chmod -x hooks<br />
exit<br />
</code></p>
<p>Now on your local box create your project directory and push the source files to your newly created remote repository.</p>
<p><code><br />
rails project<br />
cd project<br />
git init<br />
git add .<br />
git commit -a<br />
git remote add origin ssh://host.joyent.us/home/username/git/project.git<br />
git push origin master<br />
</code></p>
<p>Now get your collaborators to clone your repository and push their changes.  Assuming you have added them as users via virtualmin.</p>
<p><code><br />
git clone ssh://host.joyent.us/home/username/git/project.git<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://ca.rroll.net/2009/11/21/git-on-joyent-shared-accelerator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

