diff options
author | Philippe Blain <levraiphilippeblain@gmail.com> | 2020-07-09 02:16:44 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-07-08 22:08:53 -0700 |
commit | f5d9e91ea0b31fa008e807ff14ac7fa1ad413bd8 (patch) | |
tree | 211e56da1b0d3ae50804a78755ea42da8e80b092 | |
parent | git-log.txt: add links to 'rev-list' and 'diff' docs (diff) | |
download | tgif-f5d9e91ea0b31fa008e807ff14ac7fa1ad413bd8.tar.xz |
revisions.txt: describe 'rev1 rev2 ...' meaning for ranges
The "Specifying ranges" section does not mention explicitly that
several commits can be specified to form a range.
Add a mention to that effect.
Signed-off-by: Philippe Blain <levraiphilippeblain@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/revisions.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/revisions.txt b/Documentation/revisions.txt index 1ad95065c1..d9169c062e 100644 --- a/Documentation/revisions.txt +++ b/Documentation/revisions.txt @@ -254,6 +254,9 @@ specifying a single revision, using the notation described in the previous section, means the set of commits `reachable` from the given commit. +Specifying several revisions means the set of commits reachable from +any of the given commits. + A commit's reachable set is the commit itself and the commits in its ancestry chain. |