git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* precommit hook broken with "git commit <filename>"
@ 2011-04-12 15:17 C. Scott Ananian
  2011-04-12 21:04 ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: C. Scott Ananian @ 2011-04-12 15:17 UTC (permalink / raw)
  To: git

It appears that "git commit <filename>" breaks the git precommit hook.
 Every other git command updates the index to make the
commit-about-to-be-made before running the precommit hook, and indeed
the 'pre-commit.sample' distributed with git assumes that the index
reflects the commit.  However, in the case of "git commit <filename>"
the man page states "the commit will ignore changes staged in the
index, and instead record the current content of the listed files
(which must already be known to git)".

This seems like a bug.  The precommit hook does not know (and has no
apparent way of knowing) the contents of the commit-in-progress!  If
there is a workaround, it should be incorporated into the
'pre-commit.sample', which otherwise displays the same bug; to wit,
you can inadvertently commit changes which would fail the pre-commit
check by simply using the 'git commit <filename>' form.
Worse/alternatively, bad files already existing in the index can block
the commit of "good" files named on the command line.

The fix appears clear: "git commit <filename>..." should do the
equivalent of stashing the current index, adding the named files,
*then* run the precommit hook, then do the commit, before restoring
the stashed index.  That would provide a consistent state for the
precommit hook.
  --scott

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: precommit hook broken with "git commit <filename>"
  2011-04-12 15:17 precommit hook broken with "git commit <filename>" C. Scott Ananian
@ 2011-04-12 21:04 ` Junio C Hamano
  2011-04-12 23:09   ` C. Scott Ananian
  0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2011-04-12 21:04 UTC (permalink / raw)
  To: C. Scott Ananian; +Cc: git

"C. Scott Ananian" <cscott@laptop.org> writes:

> It appears that "git commit <filename>" breaks the git precommit hook.
>  Every other git command updates the index to make the
> commit-about-to-be-made before running the precommit hook, and indeed
> the 'pre-commit.sample' distributed with git assumes that the index
> reflects the commit.  However, in the case of "git commit <filename>"
> the man page states "the commit will ignore changes staged in the
> index, and instead record the current content of the listed files
> (which must already be known to git)".

Doesn't the command call the pre-commit hook with GIT_INDEX_FILE
environment set to the temporary index used to create the (partial)
commit?  The sample pre-commit hook runs "diff --cached" between that
index and HEAD (or the empty tree), and should show the change about to be
committed.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: precommit hook broken with "git commit <filename>"
  2011-04-12 21:04 ` Junio C Hamano
@ 2011-04-12 23:09   ` C. Scott Ananian
  0 siblings, 0 replies; 3+ messages in thread
From: C. Scott Ananian @ 2011-04-12 23:09 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

On Tue, Apr 12, 2011 at 5:04 PM, Junio C Hamano <gitster@pobox.com> wrote:
> "C. Scott Ananian" <cscott@laptop.org> writes:
>
>> It appears that "git commit <filename>" breaks the git precommit hook.
>>  Every other git command updates the index to make the
>> commit-about-to-be-made before running the precommit hook, and indeed
>> the 'pre-commit.sample' distributed with git assumes that the index
>> reflects the commit.  However, in the case of "git commit <filename>"
>> the man page states "the commit will ignore changes staged in the
>> index, and instead record the current content of the listed files
>> (which must already be known to git)".
>
> Doesn't the command call the pre-commit hook with GIT_INDEX_FILE
> environment set to the temporary index used to create the (partial)
> commit?  The sample pre-commit hook runs "diff --cached" between that
> index and HEAD (or the empty tree), and should show the change about to be
> committed.

Thanks for the quick answer.  You're right, of course.  Our tests were
subtly broken.  Now that we understand how it's supposed to work,
everything looks fine.

Great work on git, btw.  Yet another case where something I think
might be broken turns out to be working correctly (and smartly) all
along, or was recently fixed, etc...
 --scott

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-04-12 23:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-12 15:17 precommit hook broken with "git commit <filename>" C. Scott Ananian
2011-04-12 21:04 ` Junio C Hamano
2011-04-12 23:09   ` C. Scott Ananian

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).