<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Will Norris &#187; git</title>
	<atom:link href="http://willnorris.com/tag/git/feed" rel="self" type="application/rss+xml" />
	<link>http://willnorris.com</link>
	<description>there&#039;s more to life than this</description>
	<lastBuildDate>Sun, 05 Feb 2012 17:41:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19719</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
		<item>
		<title>Git is the next Unix</title>
		<link>http://willnorris.com/2011/03/git-is-the-next-unix</link>
		<comments>http://willnorris.com/2011/03/git-is-the-next-unix#comments</comments>
		<pubDate>Mon, 14 Mar 2011 05:06:45 +0000</pubDate>
		<dc:creator>Will Norris</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://willnorris.com/?p=920</guid>
		<description><![CDATA[Avery Pennarun in 2008: With git, we&#8217;ve invented a new world where revision history, checksums, and branches don&#8217;t make your filesystem slower: they make it faster. They don&#8217;t make your data bigger: they make it smaller. They don&#8217;t risk your data integrity; they guarantee integrity. They don&#8217;t centralize your data in a big database; they [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://apenwarr.ca/log/?m=200801#31">Avery Pennarun</a> in 2008:</p>

<blockquote>
  <p>With git, we&#8217;ve invented a new world where revision history, checksums, and branches don&#8217;t make your filesystem slower: they make it <strong>faster</strong>. They don&#8217;t make your data bigger: they make it <strong>smaller</strong>. They don&#8217;t risk your data integrity; they <strong>guarantee integrity</strong>. They don&#8217;t centralize your data in a big database; they <strong>distribute</strong> it peer to peer.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://willnorris.com/2011/03/git-is-the-next-unix/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git: Duplicate Signed-off-by lines</title>
		<link>http://willnorris.com/2009/02/git-duplicate-signed-off-by-lines</link>
		<comments>http://willnorris.com/2009/02/git-duplicate-signed-off-by-lines#comments</comments>
		<pubDate>Sat, 14 Feb 2009 23:05:25 +0000</pubDate>
		<dc:creator>Will Norris</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://willnorris.com/?p=495</guid>
		<description><![CDATA[I&#8217;ve been playing around with git a lot as an alternative to subversion and am really loving it. However, I&#8217;m getting an error every time I try to commit: Duplicate Signed-off-by lines. I can see where this is being thrown inside .git/hooks/commit-msg, but it wasn&#8217;t immediately obvious what the problem was. I did a quick [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around with <a href="http://git-scm.com/">git</a> a lot as an alternative to subversion and am really loving it.  However, I&#8217;m getting an error every time I try to commit:</p>

<pre><code>Duplicate Signed-off-by lines.
</code></pre>

<p>I can see where this is being thrown inside <code>.git/hooks/commit-msg</code>, but it wasn&#8217;t immediately obvious what the problem was.  I did a quick google search and found that others have had the same problem, but at least some members of the git community have been <a href="http://n2.nabble.com/duplicate-sign-off-by-error-td2259305.html#nabble.msgtxt2260129">less than helpful</a>.  I did figure out the problem, and figured I&#8217;d share it here for others.</p>

<p>The commit-msg script is written using bash style <a href="http://tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_04.html">shell expansions</a>,</p>

<pre><code>foo = $(bar)
</code></pre>

<p>while the <a href="http://en.wikipedia.org/wiki/Shebang_(Unix)">shebang</a> at the top of the file is set to <code>/bin/sh</code>.  On many systems, this is not a bash shell.  The solution is to simply modify the shebang to wherever bash is on your system (probably <code>/usr/bin/bash</code> or similar).</p>
]]></content:encoded>
			<wfw:commentRss>http://willnorris.com/2009/02/git-duplicate-signed-off-by-lines/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

