<?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>botWerks &#187; git</title>
	<atom:link href="http://botwerks.org/tag/git/feed/" rel="self" type="application/rss+xml" />
	<link>http://botwerks.org</link>
	<description>misc. notes from some dork</description>
	<lastBuildDate>Thu, 29 Jul 2010 02:39:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>notes for setting up a remote git repo (ssh transport)</title>
		<link>http://botwerks.org/2010/01/03/notes-for-setting-up-a-remote-git-repo-ssh-transport/</link>
		<comments>http://botwerks.org/2010/01/03/notes-for-setting-up-a-remote-git-repo-ssh-transport/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 12:44:34 +0000</pubDate>
		<dc:creator>sulrich</dc:creator>
				<category><![CDATA[nerd]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://botwerks.org/?p=561</guid>
		<description><![CDATA[on the main server create the directory and initialize a bare repo on the server. % mkdir path_to_repo % cd path_to_repo % git --bare init from the local machine with your content/code, add the remote origin and push your code to the repo. % cd path_to_local_source % git remote add origin ssh://hostname/path_to_repo % git push [...]]]></description>
			<content:encoded><![CDATA[<p>on the main server create the directory and initialize a bare repo on the server.</p>
<pre>
% mkdir path_to_repo
% cd path_to_repo
% git --bare init</pre>
<p></p>
<p>from the local machine with your content/code, add the remote origin and push your code to the repo.</p>
<pre>
% cd path_to_local_source
% git remote add origin ssh://hostname/path_to_repo
% git push origin master</pre>
<p></p>
<p>share it or get it from another location &#8230;</p>
<p><code>% git clone ssh://hostname/path_to_repo</code></p>
<p>assumes that the person has an account on the host with the appropriate permissions to modify or read the repo contents.</p>
<p>pull changes from the server to pick up the latest &#8230;</p>
<p><code>% git pull origin master</code></p>
]]></content:encoded>
			<wfw:commentRss>http://botwerks.org/2010/01/03/notes-for-setting-up-a-remote-git-repo-ssh-transport/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
