<?xml version="1.0" encoding="UTF-8"?>

<rdf:RDF 
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns="http://purl.org/rss/1.0/"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:syn="http://purl.org/rss/1.0/modules/syndication/"
>

  <channel rdf:about="http://lwn.net/headlines/145194/">
    <title>LWN: Comments on "Git approaches 1.0"</title>
    <link>http://lwn.net/Articles/145194/</link>
    <description>
This is a special feed containing comments posted
to the individual LWN article titled &quot;Git approaches 1.0&quot;.

    </description>

    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>2</syn:updateFrequency>
    <items>
      <rdf:Seq>
	<rdf:li resource="http://lwn.net/Articles/146188/rss" />
	<rdf:li resource="http://lwn.net/Articles/145900/rss" />
	<rdf:li resource="http://lwn.net/Articles/145704/rss" />
	<rdf:li resource="http://lwn.net/Articles/145329/rss" />
	<rdf:li resource="http://lwn.net/Articles/145328/rss" />
	<rdf:li resource="http://lwn.net/Articles/145327/rss" />
      
      </rdf:Seq>
    </items>

  </channel>
    <item rdf:about="http://lwn.net/Articles/146188/rss">
      <title>Git developers aren't kernel developers?</title>
      <link>http://lwn.net/Articles/146188/rss</link>
      <dc:date>2005-08-04T07:24:50+00:00</dc:date>
      <dc:creator>Wol</dc:creator>
      <description>
      &lt;blockquote&gt;&lt;i&gt;A large and active development community coalesced around git in short order; interestingly, relatively few of the core git developers were significant kernel contributors.&lt;/i&gt;&lt;/blockquote&gt;
&lt;p&gt;That shouldn't actually be a surprise. Like many people, I like to follow kernel development (but, as I don't run linux much :-( I don't really contribute).&lt;/p&gt;
&lt;p&gt;But what I'm really involved in, and would be more involved in if I could find the time, is database development. It's what I do professionally (use and program databases) and, inasmuch as I do Free Software development, it's database engine stuff.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;br&gt;Wol&lt;/p&gt;
      
      </description>
    </item>
    <item rdf:about="http://lwn.net/Articles/145900/rss">
      <title>Renames</title>
      <link>http://lwn.net/Articles/145900/rss</link>
      <dc:date>2005-08-02T15:58:45+00:00</dc:date>
      <dc:creator>karath</dc:creator>
      <description>
      I am interested to know how GIT does the fragment tracking as described in the previous message. I have followed the GIT mailing list closely and have seen a hint from Linus that fragment tracking is what he sees a need for in the future.&lt;br&gt;
&lt;p&gt;
However, my understanding is that, while GIT is layered on a content addressable &quot;filesystem&quot;, the content addressing system used is the SHA1 sum of the entire content of the file. So, without specific tools that seach for fragment matches in different files, I cannot not see how GIT does fragment tracking.&lt;br&gt;
&lt;p&gt;
BTW, GIT now has commands to explicitly track renames.&lt;br&gt;
&lt;p&gt;
regards,&lt;br&gt;
Charles&lt;br&gt;
      
      </description>
    </item>
    <item rdf:about="http://lwn.net/Articles/145704/rss">
      <title>Renames</title>
      <link>http://lwn.net/Articles/145704/rss</link>
      <dc:date>2005-08-01T17:17:42+00:00</dc:date>
      <dc:creator>bronson</dc:creator>
      <description>
      It's a little more subtle...  During development, files are always being created and destroyed and great swaths of code moved between them.  The filename is just a temporary label.  It's the content that is key.&lt;br&gt;
&lt;p&gt;
Git will tell you &quot;File A in tree 1 is 78% the same as File B in tree 2.&quot;  The developer then knows that file B derives heavily from file A.  One day git will also be able to tell you that &quot;File C is 95% the same as parts of file A, and file D is 98% the same as parts of file A.&quot;  This makes it pretty clear that file A was split into files C and D.  Git just follows the content, no more, no less.&lt;br&gt;
&lt;p&gt;
&quot;Sure,&quot; you say, &quot;svn mv and cp can show this and it's much easier to use!&quot;  (or Arx or insert favorite CMS here)  So let's consider more real-world problems.  What if you scatter the functions in file A across 5 different files, 3 of which already exist.  Consider, for instance, the great USB reorg.  Git still happily tells you exactly what happened, whereas file-based CMSes fall flat or, at the very least, need a colossal amount of hand-holding.  Git encourages broad refactoring.  By locking the filename to particular content, other CMSes tend to discourage it.&lt;br&gt;
&lt;p&gt;
Git tells you _exactly_ what happened.  Where did you get the idea that it guesses?&lt;br&gt;
&lt;p&gt;
&quot;But it's not suitable for every development project or style.&quot;&lt;br&gt;
&lt;p&gt;
I doubt anybody would disagree with this!&lt;br&gt;
&lt;p&gt;
      
      </description>
    </item>
    <item rdf:about="http://lwn.net/Articles/145329/rss">
      <title>And don't forget Mercurial</title>
      <link>http://lwn.net/Articles/145329/rss</link>
      <dc:date>2005-07-28T15:10:17+00:00</dc:date>
      <dc:creator>corbet</dc:creator>
      <description>
      It's on my list.  I went to Matt's session at OLS, and I'm meaning to play with it some, when I get a chance...
      
      </description>
    </item>
    <item rdf:about="http://lwn.net/Articles/145328/rss">
      <title>Renames</title>
      <link>http://lwn.net/Articles/145328/rss</link>
      <dc:date>2005-07-28T15:07:29+00:00</dc:date>
      <dc:creator>vmole</dc:creator>
      <description>
      &lt;p&gt;&lt;i&gt;One of the harder problems in many SCM systems - handling the renaming of files - requires no special care with git.&lt;/i&gt;

&lt;p&gt;That's because git completely ignores the problem. Renaming &quot;foo&quot; to &quot;bar&quot; is treated exactly the same as deleting &quot;foo&quot; and then creating &quot;bar&quot;. By this definition cvs handles renames just fine, too.
Linus handwaves this problem by saying you can compare content of &quot;foo&quot; and &quot;bar&quot; and guess that the transition was a rename. I personally don't want my SCM to be &quot;guessing&quot; about what has happened.
&lt;p&gt;Which is not to diss git. It does what Linus wants it to do, and does it very quickly. It's an impressive piece of work, and especially so considering the timeframe. But it's not suitable for every development project or style.
      
      </description>
    </item>
    <item rdf:about="http://lwn.net/Articles/145327/rss">
      <title>And don't forget Mercurial</title>
      <link>http://lwn.net/Articles/145327/rss</link>
      <dc:date>2005-07-28T15:00:32+00:00</dc:date>
      <dc:creator>bos</dc:creator>
      <description>
      Jonathan, perhaps you could do an article on Mercurial, since it's the other major distributed revision control system to have appeared since BK became unavailable to non-paying-customers.&lt;br&gt;
&lt;p&gt;
It doesn't have the same size of galloping horde behind it that git does, but it has a devoted following in the kernel development community, and is seeing intense interest outside that sphere.&lt;br&gt;
&lt;p&gt;
But I'm biased, because I work on it a lot :-)&lt;br&gt;
&lt;p&gt;
&lt;a href=&quot;http://www.selenic.com/mercurial&quot;&gt;http://www.selenic.com/mercurial&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.serpentine.com/mercurial&quot;&gt;http://www.serpentine.com/mercurial&lt;/a&gt;&lt;br&gt;
      
      </description>
    </item>
</rdf:RDF>

