[RFC PATCH 2/3] Documentation/git-rev-list: s///

Thu, 11 Oct 2018 16:09:54 -0700

git-rev-list has a mode where it works on the granularity of trees and
blobs, rather than commits only. When discussing this mode in
documenation, it can get awkward to refer to the list of arguments that
may include blobs and trees as <commit>. It is especially awkward in a
follow-up patch, so prepare for that patch by renaming the argument.

In addition to simply renaming the argument, also reword documentation
in some places such that we include non-commit objects in our
terminology. In other words, s/commit/object/ in any prose where the
context obviously applies to trees and blobs in a non-pathological way.

Signed-off-by: Matthew DeVore <matv...@google.com>
---
 Documentation/git-rev-list.txt     | 21 ++++++++++++---------
 Documentation/rev-list-options.txt | 16 ++++++++--------
 builtin/rev-list.c                 |  2 +-
 3 files changed, 21 insertions(+), 18 deletions(-)

diff --git a/Documentation/git-rev-list.txt b/Documentation/git-rev-list.txt
index 88609ff43..b3357932c 100644
--- a/Documentation/git-rev-list.txt
+++ b/Documentation/git-rev-list.txt
@@ -60,20 +60,23 @@ SYNOPSIS
             [ --no-walk ] [ --do-walk ]
             [ --count ]
             [ --use-bitmap-index ]
-            <commit>... [ \-- <paths>... ]
+            <object>... [ \-- <paths>... ]
 
 DESCRIPTION
 -----------
 
-List commits that are reachable by following the `parent` links from the
-given commit(s), but exclude commits that are reachable from the one(s)
-given with a '{caret}' in front of them.  The output is given in reverse
-chronological order by default.
+List objects that are reachable by following references from the given
+object(s), but exclude objects that are reachable from the one(s) given
+with a '{caret}' in front of them.
 
-You can think of this as a set operation.  Commits given on the command
-line form a set of commits that are reachable from any of them, and then
-commits reachable from any of the ones given with '{caret}' in front are
-subtracted from that set.  The remaining commits are what comes out in the
+By default, only commit objects are shown, and the commits are shown in
+reverse chronological order. The '--object' flag causes non-commit objects
+to also be shown.
+
+You can think of this as a set operation.  Objects given on the command
+line form a set of objects that are reachable from any of them, and then
+objects reachable from any of the ones given with '{caret}' in front are
+subtracted from that set.  The remaining objects are what come out in the
 command's output.  Various other options and paths parameters can be used
 to further limit the result.
 
diff --git a/Documentation/rev-list-options.txt 
b/Documentation/rev-list-options.txt
index 5f1672913..c2c1c40e6 100644
--- a/Documentation/rev-list-options.txt
+++ b/Documentation/rev-list-options.txt
@@ -139,29 +139,29 @@ parents) and `--max-parents=-1` (negative numbers denote 
no upper limit).
 
 --all::
        Pretend as if all the refs in `refs/`, along with `HEAD`, are
-       listed on the command line as '<commit>'.
+       listed on the command line as '<object>'.
 
 --branches[=<pattern>]::
        Pretend as if all the refs in `refs/heads` are listed
-       on the command line as '<commit>'. If '<pattern>' is given, limit
+       on the command line as '<object>'. If '<pattern>' is given, limit
        branches to ones matching given shell glob. If pattern lacks '?',
        '{asterisk}', or '[', '/{asterisk}' at the end is implied.
 
 --tags[=<pattern>]::
        Pretend as if all the refs in `refs/tags` are listed
-       on the command line as '<commit>'. If '<pattern>' is given, limit
+       on the command line as '<object>'. If '<pattern>' is given, limit
        tags to ones matching given shell glob. If pattern lacks '?', 
'{asterisk}',
        or '[', '/{asterisk}' at the end is implied.
 
 --remotes[=<pattern>]::
        Pretend as if all the refs in `refs/remotes` are listed
-       on the command line as '<commit>'. If '<pattern>' is given, limit
+       on the command line as '<object>'. If '<pattern>' is given, limit
        remote-tracking branches to ones matching given shell glob.
        If pattern lacks '?', '{asterisk}', or '[', '/{asterisk}' at the end is 
implied.
 
 --glob=<glob-pattern>::
        Pretend as if all the refs matching shell glob '<glob-pattern>'
-       are listed on the command line as '<commit>'. Leading 'refs/',
+       are listed on the command line as '<object>'. Leading 'refs/',
        is automatically prepended if missing. If pattern lacks '?', 
'{asterisk}',
        or '[', '/{asterisk}' at the end is implied.
 
@@ -182,7 +182,7 @@ explicitly.
 
 --reflog::
        Pretend as if all objects mentioned by reflogs are listed on the
-       command line as `<commit>`.
+       command line as `<object>`.
 
 --single-worktree::
        By default, all working trees will be examined by the
@@ -205,9 +205,9 @@ ifndef::git-rev-list[]
 endif::git-rev-list[]
 
 --stdin::
-       In addition to the '<commit>' listed on the command
+       In addition to the '<object>' listed on the command
        line, read them from the standard input. If a `--` separator is
-       seen, stop reading commits and start reading paths to limit the
+       seen, stop reading objects and start reading paths to limit the
        result.
 
 ifdef::git-rev-list[]
diff --git a/builtin/rev-list.c b/builtin/rev-list.c
index 49d6deed7..9817e6747 100644
--- a/builtin/rev-list.c
+++ b/builtin/rev-list.c
@@ -21,7 +21,7 @@
 #include "object-store.h"
 
 static const char rev_list_usage[] =
-"git rev-list [OPTION] <commit-id>... [ -- paths... ]\n"
+"git rev-list [OPTION] <object-id>... [ -- paths... ]\n"
 "  limiting output:\n"
 "    --max-count=<n>\n"
 "    --max-age=<epoch>\n"
-- 
2.19.1.331.ge82ca0e54c-goog

Reply via email to