diff options
author | Jeff King <peff@peff.net> | 2020-07-29 16:12:10 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-07-29 13:44:03 -0700 |
commit | 9a6d515fc38abc36a94228f2b96813e1b07c0059 (patch) | |
tree | 65320de5487e270e5c647e985791654fbfad290f /Documentation/git-log.txt | |
parent | doc/git-log: drop "-r" diff option (diff) | |
download | tgif-9a6d515fc38abc36a94228f2b96813e1b07c0059.tar.xz |
doc/git-log: move "-t" into diff-options list
The "-t" option is infrequently used; it doesn't deserve a spot near the
top of the options list. Let's push it down into the diff-options
include, near the definition of --raw.
We'll protect it with a git-log ifdef, since it doesn't make any sense
for non-tree diff commands. Note that this means it also shows up in
git-show, but that's a good thing; it applies equally well there.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-log.txt')
-rw-r--r-- | Documentation/git-log.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Documentation/git-log.txt b/Documentation/git-log.txt index 2cbe636b2b..0a4c99e5f8 100644 --- a/Documentation/git-log.txt +++ b/Documentation/git-log.txt @@ -146,9 +146,6 @@ below can be used to show the changes made by each commit. in that case, the output represents the changes the merge brought _into_ the then-current branch. --t:: - Show the tree objects in the diff output. - :git-log: 1 include::diff-options.txt[] |