On 09/21/2011 10:17 PM, Junio C Hamano wrote: > Michael Haggerty <mhagger@xxxxxxxxxxxx> writes: >> I was thinking of using git attributes to configure a server-side >> "update" hook that does some basic sanity checking before accepting a >> push. I thought I could do something like >> >> ~/.gitattributes: >> *.c whitespace >> >> ~/crappy-vendor-code/.gitattributes: >> # This code doesn't conform to our standards; disable check: >> *.c -whitespace >> >> This would allow fine-grained specification of which checks are applied >> to which files, and ensure that the hook configuration is kept >> synchronized with changes to the content. > > The words "server side" automatically mean that there should be no working > tree, and where there is no working tree there should be no index, so the > direction should not make any difference. The attributes that are used to > help whitespace checks should come from project.git/info/attributes in > such a case [*1*]. Thanks for the reply and for explaining how the index can(not) be used for this purpose. But what you propose is not flexible enough for me. I would like the checking configuration to be *versioned* along with the code. For example, suppose my project decides to enforce a rule that all Python code needs to be indented with spaces. It might be that not all of our old code adheres to this rule, and that we only want to clean up the code in master. I would like to be able to 1. Implement a new "check-space-indent" option in our update hook, which is applied to any file that has the "check-space-indent" attribute. At first, no files have this attribute, so the new test has no effect. 2. Start cleaning up code in master. Each time a subdirectory tree is cleaned up, add a line like *.py check-space-indent in a .gitattributes file at the root of the subdirectory tree. While this procedure proceeds incrementally, git ensures that code that has been cleaned up stays cleaned up. 3. When all code is cleaned up, add the above line to the top-level .gitattributes file in the master branch. But if there are some parts of the code that we don't want to clean up (for example, code acquired from elsewhere that uses different coding standards), we can turn off the check for that subdirectory tree. Note that during this whole process all code passes the update hook, because we can configure it to ignore problems in code that hasn't been cleaned up yet. And even at the end of the procedure, it is still possible to commit to older branches where tabs are still used for indentation because they don't use the new attribute. For this to be possible, I would need to determine the git attributes to apply to a particular file in a particular commit; something like git check-attr check-space-indent $SHA1:path/to/file This does not seem to be possible today without writing my own code to crawl and parse the gitattributes files from a particular commit. > (1) grab the new commits introduced to the project using rev-list, and > invoke "git show --check" on each and every one of them; or Where does "git show --check" read its gitattributes (i.e., "whitespace") from? Michael -- Michael Haggerty mhagger@xxxxxxxxxxxx http://softwareswirl.blogspot.com/ -- 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