git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* is there a reason pre-commit.sample uses "git diff-index"?
@ 2018-05-31 16:38 Robert P. J. Day
  2018-05-31 17:05 ` Duy Nguyen
  0 siblings, 1 reply; 8+ messages in thread
From: Robert P. J. Day @ 2018-05-31 16:38 UTC (permalink / raw)
  To: Git Mailing list


  was going over some hooks and writing some tutorials for some of the
commit-related, client-side hooks, and was wondering (perhaps
stupidly) why the pre-commit.sample hook uses, as its last line:

  exec git diff-index --check --cached $against --
           ^^^^^^^^^^

as in, could this not be done equivalently with just git diff, not git
diff-index? i just did a quick test and it seems to do the same thing,
but i've never taken a close look at git diff-index before so i may
just be clueless about some important distinction.

rday

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                  http://crashcourse.ca/dokuwiki

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================

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

* Re: is there a reason pre-commit.sample uses "git diff-index"?
  2018-05-31 16:38 is there a reason pre-commit.sample uses "git diff-index"? Robert P. J. Day
@ 2018-05-31 17:05 ` Duy Nguyen
  2018-05-31 17:27   ` Robert P. J. Day
  0 siblings, 1 reply; 8+ messages in thread
From: Duy Nguyen @ 2018-05-31 17:05 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Git Mailing list

On Thu, May 31, 2018 at 6:38 PM, Robert P. J. Day <rpjday@crashcourse.ca> wrote:
>
>   was going over some hooks and writing some tutorials for some of the
> commit-related, client-side hooks, and was wondering (perhaps
> stupidly) why the pre-commit.sample hook uses, as its last line:
>
>   exec git diff-index --check --cached $against --
>            ^^^^^^^^^^
>
> as in, could this not be done equivalently with just git diff, not git
> diff-index? i just did a quick test and it seems to do the same thing,
> but i've never taken a close look at git diff-index before so i may
> just be clueless about some important distinction.

git diff-index is "plumbing", designed for writing scripts. "git diff"
on the other hand is for users and its behavior may change even if it
breaks backward compatibility.
-- 
Duy

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

* Re: is there a reason pre-commit.sample uses "git diff-index"?
  2018-05-31 17:05 ` Duy Nguyen
@ 2018-05-31 17:27   ` Robert P. J. Day
  2018-05-31 17:41     ` Duy Nguyen
  2018-05-31 23:08     ` Johannes Sixt
  0 siblings, 2 replies; 8+ messages in thread
From: Robert P. J. Day @ 2018-05-31 17:27 UTC (permalink / raw)
  To: Duy Nguyen; +Cc: Git Mailing list

On Thu, 31 May 2018, Duy Nguyen wrote:

> On Thu, May 31, 2018 at 6:38 PM, Robert P. J. Day <rpjday@crashcourse.ca> wrote:
> >
> >   was going over some hooks and writing some tutorials for some of
> > the commit-related, client-side hooks, and was wondering (perhaps
> > stupidly) why the pre-commit.sample hook uses, as its last line:
> >
> >   exec git diff-index --check --cached $against --
> >            ^^^^^^^^^^
> >
> > as in, could this not be done equivalently with just git diff, not
> > git diff-index? i just did a quick test and it seems to do the
> > same thing, but i've never taken a close look at git diff-index
> > before so i may just be clueless about some important distinction.
>
> git diff-index is "plumbing", designed for writing scripts. "git
> diff" on the other hand is for users and its behavior may change
> even if it breaks backward compatibility.

  ah, this was a philosophical underpinning i was unaware of. i see
occasional explanations of git porcelain versus plumbing, but i don't
recall anyone simply stating that the plumbing is meant to have a
long-term stability that is not guaranteed for the porcelain.

  in any event, this does mean that, stability issues aside, "git
diff" would apparently have worked just fine for that hook.

rday

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                  http://crashcourse.ca/dokuwiki

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================

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

* Re: is there a reason pre-commit.sample uses "git diff-index"?
  2018-05-31 17:27   ` Robert P. J. Day
@ 2018-05-31 17:41     ` Duy Nguyen
  2018-05-31 23:08     ` Johannes Sixt
  1 sibling, 0 replies; 8+ messages in thread
From: Duy Nguyen @ 2018-05-31 17:41 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Git Mailing list

On Thu, May 31, 2018 at 7:27 PM, Robert P. J. Day <rpjday@crashcourse.ca> wrote:
> On Thu, 31 May 2018, Duy Nguyen wrote:
>
>> On Thu, May 31, 2018 at 6:38 PM, Robert P. J. Day <rpjday@crashcourse.ca> wrote:
>> >
>> >   was going over some hooks and writing some tutorials for some of
>> > the commit-related, client-side hooks, and was wondering (perhaps
>> > stupidly) why the pre-commit.sample hook uses, as its last line:
>> >
>> >   exec git diff-index --check --cached $against --
>> >            ^^^^^^^^^^
>> >
>> > as in, could this not be done equivalently with just git diff, not
>> > git diff-index? i just did a quick test and it seems to do the
>> > same thing, but i've never taken a close look at git diff-index
>> > before so i may just be clueless about some important distinction.
>>
>> git diff-index is "plumbing", designed for writing scripts. "git
>> diff" on the other hand is for users and its behavior may change
>> even if it breaks backward compatibility.
>
>   ah, this was a philosophical underpinning i was unaware of. i see
> occasional explanations of git porcelain versus plumbing, but i don't
> recall anyone simply stating that the plumbing is meant to have a
> long-term stability that is not guaranteed for the porcelain.
>
>   in any event, this does mean that, stability issues aside, "git
> diff" would apparently have worked just fine for that hook.

I think there are also stuff like config variables which can change
porcelain command behavior but usually not plumbing. Command exit code
may be another area where porcelain and plumbing differ. But in this
particular case, I think "git diff" works fine (but still should not
be used unless you're just writing a quick throwaway script).
-- 
Duy

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

* Re: is there a reason pre-commit.sample uses "git diff-index"?
  2018-05-31 17:27   ` Robert P. J. Day
  2018-05-31 17:41     ` Duy Nguyen
@ 2018-05-31 23:08     ` Johannes Sixt
  2018-05-31 23:09       ` Robert P. J. Day
  1 sibling, 1 reply; 8+ messages in thread
From: Johannes Sixt @ 2018-05-31 23:08 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Duy Nguyen, Git Mailing list

Am 31.05.2018 um 19:27 schrieb Robert P. J. Day:
> On Thu, 31 May 2018, Duy Nguyen wrote:
>> git diff-index is "plumbing", designed for writing scripts. "git
>> diff" on the other hand is for users and its behavior may change
>> even if it breaks backward compatibility.
> 
>    ah, this was a philosophical underpinning i was unaware of. i see
> occasional explanations of git porcelain versus plumbing, but i don't
> recall anyone simply stating that the plumbing is meant to have a
> long-term stability that is not guaranteed for the porcelain.

So, there you have it. ;) Plumbing commands offer long-term stability. 
That is not just philosophical, but practically relevant.

>    in any event, this does mean that, stability issues aside, "git
> diff" would apparently have worked just fine for that hook.

It may have worked just fine. You should still not use it.

Didn't you say that you are teaching git and hooks? Then you should 
teach the right thing, and the right thing is to use plumbing for scripts.

-- Hannes

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

* Re: is there a reason pre-commit.sample uses "git diff-index"?
  2018-05-31 23:08     ` Johannes Sixt
@ 2018-05-31 23:09       ` Robert P. J. Day
  2018-05-31 23:25         ` Stefan Beller
  0 siblings, 1 reply; 8+ messages in thread
From: Robert P. J. Day @ 2018-05-31 23:09 UTC (permalink / raw)
  To: Johannes Sixt; +Cc: Duy Nguyen, Git Mailing list

On Fri, 1 Jun 2018, Johannes Sixt wrote:

> Am 31.05.2018 um 19:27 schrieb Robert P. J. Day:
> > On Thu, 31 May 2018, Duy Nguyen wrote:
> >> git diff-index is "plumbing", designed for writing scripts. "git
> >> diff" on the other hand is for users and its behavior may change
> >> even if it breaks backward compatibility.
> >
> >    ah, this was a philosophical underpinning i was unaware of. i
> > see occasional explanations of git porcelain versus plumbing, but
> > i don't recall anyone simply stating that the plumbing is meant to
> > have a long-term stability that is not guaranteed for the
> > porcelain.
>
> So, there you have it. ;) Plumbing commands offer long-term
> stability. That is not just philosophical, but practically relevant.
>
> >    in any event, this does mean that, stability issues aside, "git
> > diff" would apparently have worked just fine for that hook.
>
> It may have worked just fine. You should still not use it.
>
> Didn't you say that you are teaching git and hooks? Then you should
> teach the right thing, and the right thing is to use plumbing for
> scripts.

  sure, i agree, but i don't recall *ever* running across the claim
that the "plumbing" commands had a long-term stability and backward
compatibility that the porcelain commands did not. is that mentioned
anywhere?

rday

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                  http://crashcourse.ca/dokuwiki

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================

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

* Re: is there a reason pre-commit.sample uses "git diff-index"?
  2018-05-31 23:09       ` Robert P. J. Day
@ 2018-05-31 23:25         ` Stefan Beller
  2018-06-01  2:23           ` Junio C Hamano
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Beller @ 2018-05-31 23:25 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Johannes Sixt, Duy Nguyen, Git Mailing list

On Thu, May 31, 2018 at 4:09 PM, Robert P. J. Day <rpjday@crashcourse.ca> wrote:
> On Fri, 1 Jun 2018, Johannes Sixt wrote:
>
>> Am 31.05.2018 um 19:27 schrieb Robert P. J. Day:
>> > On Thu, 31 May 2018, Duy Nguyen wrote:
>> >> git diff-index is "plumbing", designed for writing scripts. "git
>> >> diff" on the other hand is for users and its behavior may change
>> >> even if it breaks backward compatibility.
>> >
>> >    ah, this was a philosophical underpinning i was unaware of. i
>> > see occasional explanations of git porcelain versus plumbing, but
>> > i don't recall anyone simply stating that the plumbing is meant to
>> > have a long-term stability that is not guaranteed for the
>> > porcelain.
>>
>> So, there you have it. ;) Plumbing commands offer long-term
>> stability. That is not just philosophical, but practically relevant.
>>
>> >    in any event, this does mean that, stability issues aside, "git
>> > diff" would apparently have worked just fine for that hook.
>>
>> It may have worked just fine. You should still not use it.
>>
>> Didn't you say that you are teaching git and hooks? Then you should
>> teach the right thing, and the right thing is to use plumbing for
>> scripts.
>
>   sure, i agree, but i don't recall *ever* running across the claim
> that the "plumbing" commands had a long-term stability and backward
> compatibility that the porcelain commands did not. is that mentioned
> anywhere?

`man git`

LOW-LEVEL COMMANDS (PLUMBING)
       Although Git includes its own porcelain layer, its low-level commands
       are sufficient to support development of alternative porcelains.
       Developers of such porcelains might start by reading about git-update-
       index(1) and git-read-tree(1).

       The interface (input, output, set of options and the semantics) to
       these low-level commands are meant to be a lot more stable than
       Porcelain level commands, because these commands are primarily for
       scripted use. The interface to Porcelain commands on the other hand are
       subject to change in order to improve the end user experience.

One example that Junio seemed to worry about was 940a911f8ec (log:
if --decorate is not given, default to --decorate=auto, 2017-03-23), as git log
seems to be used pseudo-plumbing-ly as there is no good and equally powerful
plumbing command, so the likelihood of git-log calls in scripts out
there is high.

So maybe the community should strive to be more aggressive about
changing the porcelain interface for the better.

One thing that we discussed internally for example is changing the
output of the porcelain output of fetch, pull and push to give less
cryptic output, but rather a one line progress bar (and only show errors
when they occur). I think that would be an improvement, as I don't think
many people care about the exact numbers of objects transferred in
a push/fetch, but rather want to have an estimate of the time left for
example. Also a one line progress bar might save some precious screen
real estate.

Stefan

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

* Re: is there a reason pre-commit.sample uses "git diff-index"?
  2018-05-31 23:25         ` Stefan Beller
@ 2018-06-01  2:23           ` Junio C Hamano
  0 siblings, 0 replies; 8+ messages in thread
From: Junio C Hamano @ 2018-06-01  2:23 UTC (permalink / raw)
  To: Stefan Beller
  Cc: Robert P. J. Day, Johannes Sixt, Duy Nguyen, Git Mailing list

Stefan Beller <sbeller@google.com> writes:

> plumbing command, so the likelihood of git-log calls in scripts out
> there is high.
>
> So maybe the community should strive to be more aggressive about
> changing the porcelain interface for the better.

To me, these two paragraphs are being incoherent.

If plumbing these days lag behind "log" Porcelain and tempt script
writers more towards "log", we should aggressively reject attempts
to change the "log" Porcelain behaviour to keep it stable, until a
suitable plumbing that scripters can rely on catches up.

Or course, aggressively improving plumbing would be a good solution
to that problem as well ;-)

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

end of thread, other threads:[~2018-06-01  2:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-31 16:38 is there a reason pre-commit.sample uses "git diff-index"? Robert P. J. Day
2018-05-31 17:05 ` Duy Nguyen
2018-05-31 17:27   ` Robert P. J. Day
2018-05-31 17:41     ` Duy Nguyen
2018-05-31 23:08     ` Johannes Sixt
2018-05-31 23:09       ` Robert P. J. Day
2018-05-31 23:25         ` Stefan Beller
2018-06-01  2:23           ` Junio C Hamano

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).