Skip to content

Commit 1a3d834

Browse files
committed
git-rev-list.txt: Clarify the use of multiple revision arguments
If one thinks of a revision as the set of commits which can be reached from the rev, and of ^rev as the complement, then multiple arguments to git rev-list can be neither understood as the intersection nor the union of the individual sets. But set language is the natural as well as logical language in which to phrase this. So, add a paragraph which explains multiple arguments using set language. Suggested-by: Michael J Gruber <git@drmicha.warpmail.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8918f5c commit 1a3d834

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

Documentation/git-rev-list.txt

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,26 @@ SYNOPSIS
5151
DESCRIPTION
5252
-----------
5353

54-
Lists commit objects in reverse chronological order starting at the
55-
given commit(s), taking ancestry relationship into account. This is
56-
useful to produce human-readable log output.
54+
List commits that are reachable by following the `parent` links from the
55+
given commit(s), but exclude commits that are reachable from the one(s)
56+
given with a '{caret}' in front of them. The output is given in reverse
57+
chronological order by default.
5758

58-
Commits which are stated with a preceding '{caret}' cause listing to
59-
stop at that point. Their parents are implied. Thus the following
60-
command:
59+
You can think of this as a set operation. Commits given on the command
60+
line form a set of commits that are reachable from any of them, and then
61+
commits reachable from any of the ones given with '{caret}' in front are
62+
subtracted from that set. The remaining commits are what comes out in the
63+
command's output. Various other options and paths parameters can be used
64+
to further limit the result.
65+
66+
Thus, the following command:
6167

6268
-----------------------------------------------------------------------
6369
$ git rev-list foo bar ^baz
6470
-----------------------------------------------------------------------
6571

66-
means "list all the commits which are included in 'foo' and 'bar', but
67-
not in 'baz'".
72+
means "list all the commits which are reachable from 'foo' or 'bar', but
73+
not from 'baz'".
6874

6975
A special notation "'<commit1>'..'<commit2>'" can be used as a
7076
short-hand for "{caret}'<commit1>' '<commit2>'". For example, either of

0 commit comments

Comments
 (0)