]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-rev-list.txt
string_list: add a new function, filter_string_list()
[thirdparty/git.git] / Documentation / git-rev-list.txt
CommitLineData
2cf565c5
DG
1git-rev-list(1)
2===============
2cf565c5
DG
3
4NAME
5----
6git-rev-list - Lists commit objects in reverse chronological order
7
8
9SYNOPSIS
10--------
353ce815 11[verse]
62b4698e
ŠN
12'git rev-list' [ \--max-count=<number> ]
13 [ \--skip=<number> ]
14 [ \--max-age=<timestamp> ]
15 [ \--min-age=<timestamp> ]
353ce815 16 [ \--sparse ]
2657420d 17 [ \--merges ]
353ce815 18 [ \--no-merges ]
6a6ebded
MG
19 [ \--min-parents=<number> ]
20 [ \--no-min-parents ]
21 [ \--max-parents=<number> ]
22 [ \--no-max-parents ]
25db465a 23 [ \--first-parent ]
93b74bca 24 [ \--remove-empty ]
29a6c3f8 25 [ \--full-history ]
0d2c9d67 26 [ \--not ]
353ce815 27 [ \--all ]
62b4698e
ŠN
28 [ \--branches[=<pattern>] ]
29 [ \--tags[=<pattern>] ]
30 [ \--remotes[=<pattern>] ]
31 [ \--glob=<glob-pattern> ]
cc243c3c 32 [ \--ignore-missing ]
42cabc34 33 [ \--stdin ]
27350891 34 [ \--quiet ]
765ac8ec 35 [ \--topo-order ]
353ce815 36 [ \--parents ]
e3c1500f 37 [ \--timestamp ]
b24bace5 38 [ \--left-right ]
59c8afdf
MG
39 [ \--left-only ]
40 [ \--right-only ]
cb56e309 41 [ \--cherry-mark ]
55a643ed 42 [ \--cherry-pick ]
7cbcf4d5 43 [ \--encoding[=<encoding>] ]
bd95fcd3 44 [ \--(author|committer|grep)=<pattern> ]
5d6b3a9e
SG
45 [ \--regexp-ignore-case | -i ]
46 [ \--extended-regexp | -E ]
47 [ \--fixed-strings | -F ]
0adda936 48 [ \--date=(local|relative|default|iso|rfc|short) ]
ec579767 49 [ [\--objects | \--objects-edge] [ \--unpacked ] ]
353ce815
JF
50 [ \--pretty | \--header ]
51 [ \--bisect ]
457f08a0 52 [ \--bisect-vars ]
3ac9f612 53 [ \--bisect-all ]
d249b455 54 [ \--merge ]
9c5e66e9 55 [ \--reverse ]
4d12a471 56 [ \--walk-reflogs ]
8e64006e 57 [ \--no-walk ] [ \--do-walk ]
353ce815 58 <commit>... [ \-- <paths>... ]
2cf565c5
DG
59
60DESCRIPTION
61-----------
8c02eee2 62
1a3d834f
JH
63List commits that are reachable by following the `parent` links from the
64given commit(s), but exclude commits that are reachable from the one(s)
65given with a '{caret}' in front of them. The output is given in reverse
66chronological order by default.
2cf565c5 67
1a3d834f
JH
68You can think of this as a set operation. Commits given on the command
69line form a set of commits that are reachable from any of them, and then
70commits reachable from any of the ones given with '{caret}' in front are
71subtracted from that set. The remaining commits are what comes out in the
72command's output. Various other options and paths parameters can be used
73to further limit the result.
74
75Thus, the following command:
8c02eee2
JF
76
77-----------------------------------------------------------------------
b1889c36 78 $ git rev-list foo bar ^baz
8c02eee2
JF
79-----------------------------------------------------------------------
80
1a3d834f
JH
81means "list all the commits which are reachable from 'foo' or 'bar', but
82not from 'baz'".
adcd3512 83
8c02eee2
JF
84A special notation "'<commit1>'..'<commit2>'" can be used as a
85short-hand for "{caret}'<commit1>' '<commit2>'". For example, either of
86the following may be used interchangeably:
69e0c256 87
8c02eee2 88-----------------------------------------------------------------------
b1889c36
JN
89 $ git rev-list origin..HEAD
90 $ git rev-list HEAD ^origin
8c02eee2
JF
91-----------------------------------------------------------------------
92
93Another special notation is "'<commit1>'...'<commit2>'" which is useful
94for merges. The resulting set of commits is the symmetric difference
0d2c9d67
RS
95between the two operands. The following two commands are equivalent:
96
8c02eee2 97-----------------------------------------------------------------------
b1889c36
JN
98 $ git rev-list A B --not $(git merge-base --all A B)
99 $ git rev-list A...B
8c02eee2
JF
100-----------------------------------------------------------------------
101
57f6ec02 102'rev-list' is a very essential git command, since it
8c02eee2
JF
103provides the ability to build and traverse commit ancestry graphs. For
104this reason, it has a lot of different options that enables it to be
0b444cdb
TR
105used by commands as different as 'git bisect' and
106'git repack'.
69e0c256 107
df8baa42
JF
108OPTIONS
109-------
8c02eee2 110
fdcf39e5
MV
111:git-rev-list: 1
112include::rev-list-options.txt[]
331b51d2
JN
113
114include::pretty-formats.txt[]
115
2cf565c5
DG
116GIT
117---
9e1f0a85 118Part of the linkgit:git[1] suite