<?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>cat brain.log &#124; less &#187; add</title>
	<atom:link href="http://log.largevoid.com/tag/add/feed/" rel="self" type="application/rss+xml" />
	<link>http://log.largevoid.com</link>
	<description>Getting it down on `paper`</description>
	<lastBuildDate>Wed, 01 Feb 2012 01:41:39 +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>Setting Up a Remote git Repository</title>
		<link>http://log.largevoid.com/2010/09/setting-up-a-remote-git-repository/</link>
		<comments>http://log.largevoid.com/2010/09/setting-up-a-remote-git-repository/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 19:48:34 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=437</guid>
		<description><![CDATA[There&#8217;s no substituting for git help remote. The following is a common situation. It assumes that reponame.git does not exist on the remote machine and that you&#8217;re in a hurry to get things done. // The remote repo mkdir reponame.git cd reponame.git git init --bare cd .. scp -r reponame.git server.com:/path/to/reponame.git rm -r reponame.git  // [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s no substituting for <code>git help remote</code>.  The following is a common situation.  It assumes that reponame.git does not exist on the remote machine and that you&#8217;re in a hurry to get things done.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #000000; font-weight: bold;">//</span> The remote repo
 <span style="color: #c20cb9; font-weight: bold;">mkdir</span> reponame.git
 <span style="color: #7a0874; font-weight: bold;">cd</span> reponame.git
 <span style="color: #c20cb9; font-weight: bold;">git</span> init <span style="color: #660033;">--bare</span>
 <span style="color: #7a0874; font-weight: bold;">cd</span> ..
 <span style="color: #c20cb9; font-weight: bold;">scp</span> <span style="color: #660033;">-r</span> reponame.git server.com:<span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>reponame.git
 <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-r</span> reponame.git</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #000000; font-weight: bold;">//</span> Optional: add existing code
 <span style="color: #7a0874; font-weight: bold;">cd</span> code
 <span style="color: #c20cb9; font-weight: bold;">git</span> init
 <span style="color: #c20cb9; font-weight: bold;">git</span> add <span style="color: #000000; font-weight: bold;">*</span>.c <span style="color: #000000; font-weight: bold;">*</span>.h Makefile
 <span style="color: #c20cb9; font-weight: bold;">git</span> commit <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;initial import&quot;</span>
 <span style="color: #000000; font-weight: bold;">//</span> <span style="color: #000000; font-weight: bold;">if</span> you somehow already have a remote, first issue <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">git</span> remote <span style="color: #c20cb9; font-weight: bold;">rm</span> origin<span style="color: #000000; font-weight: bold;">`</span>
 <span style="color: #c20cb9; font-weight: bold;">git</span> remote add origin <span style="color: #c20cb9; font-weight: bold;">ssh</span>:<span style="color: #000000; font-weight: bold;">//</span>server.com<span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>reponame.git
 <span style="color: #c20cb9; font-weight: bold;">git</span> push origin master</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"> <span style="color: #000000; font-weight: bold;">//</span> Clone remote repo to <span style="color: #7a0874; font-weight: bold;">local</span> system
 <span style="color: #c20cb9; font-weight: bold;">git</span> clone <span style="color: #c20cb9; font-weight: bold;">ssh</span>:<span style="color: #000000; font-weight: bold;">//</span>server.com<span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>reponame.git
 <span style="color: #000000; font-weight: bold;">//</span> ... now get to work<span style="color: #000000; font-weight: bold;">!</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/09/setting-up-a-remote-git-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On the Millennials and Having Children</title>
		<link>http://log.largevoid.com/2010/01/on-the-millennials-and-having-children/</link>
		<comments>http://log.largevoid.com/2010/01/on-the-millennials-and-having-children/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:14:19 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Lessons]]></category>
		<category><![CDATA[Quotes]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[adhd]]></category>
		<category><![CDATA[bored]]></category>
		<category><![CDATA[children]]></category>
		<category><![CDATA[depression]]></category>
		<category><![CDATA[emo]]></category>
		<category><![CDATA[generation]]></category>
		<category><![CDATA[right]]></category>
		<category><![CDATA[spoiled]]></category>
		<category><![CDATA[wrong]]></category>

		<guid isPermaLink="false">http://log.largevoid.com/?p=273</guid>
		<description><![CDATA[Everyone wants a baby, but no one wants a kid these days. Runaway1956 Kids today get emo and suicidal because they have been given everything, never had to earn anything, never been hungry, never had anything real to fear, never been punished for their behavior and are bored with having too much entertainment. Nadaka]]></description>
			<content:encoded><![CDATA[<p><q>Everyone wants a baby, but no one wants a kid these days.</q> <cite><a href="http://science.slashdot.org/comments.pl?sid=1507380&#038;cid=30737616">Runaway1956</a></cite></p>
<p><q>Kids today get emo and suicidal because they have been given everything, never had to earn anything, never been hungry, never had anything real to fear, never been punished for their behavior and are bored with having too much entertainment.</q> <cite><a href="http://science.slashdot.org/comments.pl?sid=1507380&#038;cid=30737782">Nadaka</a></cite></p>
]]></content:encoded>
			<wfw:commentRss>http://log.largevoid.com/2010/01/on-the-millennials-and-having-children/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  log.largevoid.com/tag/add/feed/ ) in 0.31891 seconds, on Feb 5th, 2012 at 4:59 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 5th, 2012 at 5:59 pm UTC -->
