Re: Git not commiting anything if file created and "git add"ed in pre-commit hook is the only file in the staging area
From: Johannes Sixt <hidden>
Date: 2021-10-30 16:44:58
Am 30.10.21 um 15:21 schrieb Peter Hunkeler:
Pardon my ignorance, but I'm unlear as to how to proceed further with my issue. What is the proper process to report a bug, and get a consense whether it is accepted or rejected?
Writing a message to this mailing list is all the process that exists. You brought forward arguments in a civil manner why you think the current behavior is not correct. That's appreciated. However, it doesn't automatically mean that something will be changed. In your particular case...
Am 28.10.2021 um 14:08 schrieb Peter Hunkeler:quoted
Am 28.10.2021 um 00:07 schrieb brian m. carlson:quoted
I should point out here that it isn't intended for pre-commit hooks to be used this way; they're intended to verify that the commit meets some standards, not to modify it, although it is of course possible to do.I can accept that comment. However: - wouldn't you agree that git should work consistently? It does not in this case. If there is anything to be commited in the index, then the "git add" from within the pre-commit hook *is* respected in this commit. If there is *nothing* to be commited, except from what was added by the pre-commit exit, then it is ignored *for this commit*, but it is added and will be commited next time. This is inconsistent behaviour. - if the decision will be *not* to allow adding from within a pre-commit hook, then the "git add" should be rejected. And the documentation should say so.
... it is clearly stated (and brian repeated it) that the pre-commit hook is intended to check the commit for "correctness" (whatever that means for the project). `git add` is not automatically forbidden, because it would be an unreasonable engineering effort to forbid things that "do not merely check" the commit. (What if a user has to use `git add` as part of some exotic check? For example, it is possible to `git add` to some temporary throw-away index that is different from the one that is about to be committed.) Even though the documentation does not say explicitly that the commit must not be changed, it is implicit in the stated intent (that the commit is only checked). Depending on that some particular behavior works for you sometimes is then your own business, and when it breaks you get to keep both parts. In conclusion, the pre-commit hook behaves as designed and nothing has to be changed. -- Hannes