On Wed, 18 Apr 2007, Rogan Dawes wrote: > > Or similarly, when checking an "ODF" file in, the attribute would lead to an > appropriate script creating the "tree" of individual files. > > Does this sound workable? I think it sounds very interesting, and I'd much rather do _those_ kinds of rewrites than keyword unexpansion. And yes, some kind of generic support for rewriting might give people effectively the keywords they want (I think the CVS semantics are not likely to be logical, but people can probably do something that works for them), and at that point maybe the keyword discussion goes away too. However, I don't know if it is "workable". The thing is, it's easy enough (although potentially _very_ expensive) to run some per-file script at each commit and at each checkout. But there are some fundamental operations that are even more common: - checking for "file changed", aka the "git status" kind of thing Anything we do would have to follow the same "stat" rules, at a minimum. You can *not* afford to have to check the file manually. So especially if you combine several pieces into one, or split one file into several pieces, your index would have to contain the entry that matches the _filesystem_ (because that's what the index is all about), but then the *tree* would contain the pieces (or the single entry that matches several filesystem entries). - what about diffs (once the stat information says something has potentially changed)? You'd have to script those too, and it really sounds like some very basic operations get a _lot_ more expensive and complex. This is also related to the above: one of the most fundamental diffs is the diff of the index and a tree - so if the index matches the "filesystem state" and the trees contain some "combined entry" or "split entry", you'd have to teach some very core diff functionality about that kind of mapping. In other words, I think it's too complicated. Not necessarily impossible, but likely harder and more complex than it's really worth. Having a 1:1 file mapping (like the CRLF<->LF object mapping is) is a lot easier. You just have to make sure that the index has the *stat* information from the filesystem, but the *sha1* identity information from the git internal format, and things automatically just fall out right. But if you have anything but a 1:1 relationship, it gets hugely more complex. Linus - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html