Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261747AbVDWT5N (ORCPT ); Sat, 23 Apr 2005 15:57:13 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261738AbVDWT5N (ORCPT ); Sat, 23 Apr 2005 15:57:13 -0400 Received: from fire.osdl.org ([65.172.181.4]:31907 "EHLO smtp.osdl.org") by vger.kernel.org with ESMTP id S261747AbVDWT5D (ORCPT ); Sat, 23 Apr 2005 15:57:03 -0400 Date: Sat, 23 Apr 2005 12:58:50 -0700 (PDT) From: Linus Torvalds To: Sean cc: Thomas Glanzmann , David Woodhouse , Jan Dittmer , Greg KH , Kernel Mailing List , Git Mailing List Subject: Re: Git-commits mailing list feed. In-Reply-To: <1907.10.10.10.24.1114281858.squirrel@linux1> Message-ID: References: <200504210422.j3L4Mo8L021495@hera.kernel.org> <42674724.90005@ppp0.net> <20050422002922.GB6829@kroah.com> <426A4669.7080500@ppp0.net> <1114266083.3419.40.camel@localhost.localdomain> <426A5BFC.1020507@ppp0.net> <1114266907.3419.43.camel@localhost.localdomain> <20050423175422.GA7100@cip.informatik.uni-erlangen.de> <2911.10.10.10.24.1114279589.squirrel@linux1> <1907.10.10.10.24.1114281858.squirrel@linux1> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1843 Lines: 44 On Sat, 23 Apr 2005, Sean wrote: > > Okay now you're just being difficult You're acting like it's > impossible for git to grab the SHA1 out of the clear text message if there > is signing overhead above the tag reference. That is nonesense. No. It's not "impossible" for git to parse crap. But git won't. There are two ways you can write programs: - reliably - unreliably and I do the first one. That means that a program I write does something _repeatable_. It does the same thing, regardless of whether a human happened to write "REF:" in the comment section, or anything else. The thing is, great programs come not out of great coding, but out of great data structures. The whole git philosophy bases itself on getting the data structure right. And what you are asking for is doing it _wrong_. So in git I don't just parse random free-form text and guess that a line that starts with REF: is a reference to a commit. It has very rigid and well-specified data structures, and that's how you make reliable programs. I don't care what anybody else does on top of git, but dammit, I'll make sure that the core infrastructure is designed the right way. And that means that we don't guess, and that we don't parse random ASCII blobs. It means that we have very very fixed formats so that programs can either do the right thing or unambiguously say "that's crap". I've said it before, and I'll say it again: we have enough crap that calls itself SCM's out there already. I want git to be reliable and _simple_, not a collection of crap that just happens to work. Linus - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/