diff mbox series

show doc: redirect user to git log manual instead of git diff-tree

Message ID 20230905121219.69762-1-hanyang.tony@bytedance.com (mailing list archive)
State Superseded
Headers show
Series show doc: redirect user to git log manual instead of git diff-tree | expand

Commit Message

Han Young Sept. 5, 2023, 12:12 p.m. UTC
While git show accepts options that apply to the git diff-tree command,
some options do not make sense in the context of git show.
The options of git show are handled using the machinery of git log.
The git log manual page is a better place to look into than git diff-tree
for options that are not in the git show manual page.

Signed-off-by: Han Young <hanyang.tony@bytedance.com>
---
 Documentation/git-show.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Junio C Hamano Sept. 5, 2023, 11:26 p.m. UTC | #1
Han Young <hanyang.tony@bytedance.com> writes:

> While git show accepts options that apply to the git diff-tree command,
> some options do not make sense in the context of git show.

Wow, "diff-tree" is a bit too arcane, I would agree.

Strictly speaking, "options to control how the changes are shown"
are options that are meant for "diff" command (e.g. "--stat", "-w"),
but "log" understands some of the "diff" command options, the
updated text is *not* incorrect.

Because "show" is about displaying individual commits and not range,
some options that are meant for the "log" command (e.g.
"--first-parent", "--no-merges") do not make much sense.  So

    Some options that `git log` command understands can be used to
    control how the changes the commit introduces are shown.

or something like that, perhaps?  I dunno.

> -The command takes options applicable to the 'git diff-tree' command to
> +The command takes options applicable to the 'git log' command to
>  control how the changes the commit introduces are shown.
>  
>  This manual page describes only the most frequently used options.
Han Young Sept. 6, 2023, 6:09 a.m. UTC | #2
> Strictly speaking, "options to control how the changes are shown"
> are options that are meant for "diff" command (e.g. "--stat", "-w"),
> but "log" understands some of the "diff" command options, the
> updated text is *not* incorrect.

On a closer look, the manual page of git show does lists
all the "diff" options by including diff-options.txt.
The options omitted are revision parsing related.
Perhaps we remove the line

> The command takes options applicable to the git diff-tree command to
> control how the changes the commit introduces are shown.

And rephrase the line

> This manual page describes only the most frequently used options.

to

>  This manual page describes only the most frequently used options.
> Some options that `git rev-list` command understands can be used to
> control how commits are shown.
Junio C Hamano Sept. 6, 2023, 5:26 p.m. UTC | #3
Han Young <hanyang.tony@bytedance.com> writes:

>> Strictly speaking, "options to control how the changes are shown"
>> are options that are meant for "diff" command (e.g. "--stat", "-w"),
>> but "log" understands some of the "diff" command options, the
>> updated text is *not* incorrect.
>
> On a closer look, the manual page of git show does lists
> all the "diff" options by including diff-options.txt.
> The options omitted are revision parsing related.

The primary difference between "log" and "show" is that the latter
is not about walking a range of commits.  Both grok "diff" related
options that control how the changes introduced by each commit are
shown equally well.  But in the context of "show", options that
control revision traversal (i.e. which commits are chosen to be
shown and in what order) do not make much sense.

So ...

> Perhaps we remove the line
>
>> The command takes options applicable to the git diff-tree command to
>> control how the changes the commit introduces are shown.
>
> And rephrase the line
>
>> This manual page describes only the most frequently used options.
>
> to
>
>>  This manual page describes only the most frequently used options.
>> Some options that `git rev-list` command understands can be used to
>> control how commits are shown.

... I do not find the above an improvement.

Perhaps we should start with just "diff-tree" -> "log" and doing no
other damage to the existing text.  That will give us some baseline
that is a strict improvement.

Thanks.
diff mbox series

Patch

diff --git a/Documentation/git-show.txt b/Documentation/git-show.txt
index 2b1bc7288d..13f63f5210 100644
--- a/Documentation/git-show.txt
+++ b/Documentation/git-show.txt
@@ -26,7 +26,7 @@  with --name-only).
 
 For plain blobs, it shows the plain contents.
 
-The command takes options applicable to the 'git diff-tree' command to
+The command takes options applicable to the 'git log' command to
 control how the changes the commit introduces are shown.
 
 This manual page describes only the most frequently used options.