Dmitry Kakurin wrote: >> A tree that has .gitattributes (and I am assuming in the longer >> term you can use "ignore" and "precious" in .gitattributes >> instead of using .gitignore) POINTS TO A BLOB already, so what >> you are saying does not add anything to what we already have, >> other than that you are renaming .gitattributes to "META ENTRY". > > Almost true! The difference is: META BLOBS are not created as files in > the workspace (not during checkout, not ever). > In order to edit it you'd have to use 'git meta' command. > So once again, there is only one place to check for metadata - the index. Can I just chime in here and express my distaste for this idea, on several grounds, but the summary is that svn does it this way, so it must be wrong. These files which store metadata would be stored in a way that is "in another dimension" to the project files, despite being a part of the history. That means that all tools built to deal with regular files and directories will not be able to merge the changes to the attributes without special support. I think this is broken. This is something I frequently run up against with people coming from Subversion, which supports unversioned revision properties which can change randomly and without trace, and per-file/directory properties which are simply files which you can't refer to in the regular way, and are interpreted in an application-specific way. My question to these people, and my question to you is: why do these files need to be served from another dimension, what value does it add? You see, either way, their contents need to be processed in an application-specific way. Same thing with git's "commit properties" - basically just RFC822.. headers used in the commit message. People I have talked to have described this as "more arbitrary" than conventions for attributes which are structured. However, when pressed I have yet to hear a clear argument why this is the case. As far as file properties goes, I still like Linus' idea of making these files which are accessed by treating the file as a directory (eg filename.txt/ACL, filename.txt/mime-type), and that approach could be represented in git well. Sam. - 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