RPM spec: include gitk message files.
[git/dscho.git] / Documentation / git-rev-list.txt
blobdb42cd8a9295b96728509c9859441df844177dc4
1 git-rev-list(1)
2 ===============
4 NAME
5 ----
6 git-rev-list - Lists commit objects in reverse chronological order
9 SYNOPSIS
10 --------
11 [verse]
12 'git-rev-list' [ \--max-count=number ]
13              [ \--skip=number ]
14              [ \--max-age=timestamp ]
15              [ \--min-age=timestamp ]
16              [ \--sparse ]
17              [ \--no-merges ]
18              [ \--first-parent ]
19              [ \--remove-empty ]
20              [ \--full-history ]
21              [ \--not ]
22              [ \--all ]
23              [ \--stdin ]
24              [ \--quiet ]
25              [ \--topo-order ]
26              [ \--parents ]
27              [ \--timestamp ]
28              [ \--left-right ]
29              [ \--cherry-pick ]
30              [ \--encoding[=<encoding>] ]
31              [ \--(author|committer|grep)=<pattern> ]
32              [ \--regexp-ignore-case | \-i ]
33              [ \--extended-regexp | \-E ]
34              [ \--date={local|relative|default|iso|rfc|short} ]
35              [ [\--objects | \--objects-edge] [ \--unpacked ] ]
36              [ \--pretty | \--header ]
37              [ \--bisect ]
38              [ \--bisect-vars ]
39              [ \--bisect-all ]
40              [ \--merge ]
41              [ \--reverse ]
42              [ \--walk-reflogs ]
43              [ \--no-walk ] [ \--do-walk ]
44              <commit>... [ \-- <paths>... ]
46 DESCRIPTION
47 -----------
49 Lists commit objects in reverse chronological order starting at the
50 given commit(s), taking ancestry relationship into account.  This is
51 useful to produce human-readable log output.
53 Commits which are stated with a preceding '{caret}' cause listing to
54 stop at that point. Their parents are implied. Thus the following
55 command:
57 -----------------------------------------------------------------------
58         $ git-rev-list foo bar ^baz
59 -----------------------------------------------------------------------
61 means "list all the commits which are included in 'foo' and 'bar', but
62 not in 'baz'".
64 A special notation "'<commit1>'..'<commit2>'" can be used as a
65 short-hand for "{caret}'<commit1>' '<commit2>'". For example, either of
66 the following may be used interchangeably:
68 -----------------------------------------------------------------------
69         $ git-rev-list origin..HEAD
70         $ git-rev-list HEAD ^origin
71 -----------------------------------------------------------------------
73 Another special notation is "'<commit1>'...'<commit2>'" which is useful
74 for merges.  The resulting set of commits is the symmetric difference
75 between the two operands.  The following two commands are equivalent:
77 -----------------------------------------------------------------------
78         $ git-rev-list A B --not $(git-merge-base --all A B)
79         $ git-rev-list A...B
80 -----------------------------------------------------------------------
82 linkgit:git-rev-list[1] is a very essential git program, since it
83 provides the ability to build and traverse commit ancestry graphs. For
84 this reason, it has a lot of different options that enables it to be
85 used by commands as different as linkgit:git-bisect[1] and
86 linkgit:git-repack[1].
88 OPTIONS
89 -------
91 Commit Formatting
92 ~~~~~~~~~~~~~~~~~
94 Using these options, linkgit:git-rev-list[1] will act similar to the
95 more specialized family of commit log tools: linkgit:git-log[1],
96 linkgit:git-show[1], and linkgit:git-whatchanged[1]
98 include::pretty-options.txt[]
100 --relative-date::
102         Synonym for `--date=relative`.
104 --date={relative,local,default,iso,rfc}::
106         Only takes effect for dates shown in human-readable format, such
107         as when using "--pretty".
109 `--date=relative` shows dates relative to the current time,
110 e.g. "2 hours ago".
112 `--date=local` shows timestamps in user's local timezone.
114 `--date=iso` (or `--date=iso8601`) shows timestamps in ISO 8601 format.
116 `--date=rfc` (or `--date=rfc2822`) shows timestamps in RFC 2822
117 format, often found in E-mail messages.
119 `--date=short` shows only date but not time, in `YYYY-MM-DD` format.
121 `--date=default` shows timestamps in the original timezone
122 (either committer's or author's).
124 --header::
126         Print the contents of the commit in raw-format; each record is
127         separated with a NUL character.
129 --parents::
131         Print the parents of the commit.
133 --timestamp::
134         Print the raw commit timestamp.
136 --left-right::
138         Mark which side of a symmetric diff a commit is reachable from.
139         Commits from the left side are prefixed with `<` and those from
140         the right with `>`.  If combined with `--boundary`, those
141         commits are prefixed with `-`.
143 For example, if you have this topology:
145 -----------------------------------------------------------------------
146              y---b---b  branch B
147             / \ /
148            /   .
149           /   / \
150          o---x---a---a  branch A
151 -----------------------------------------------------------------------
153 you would get an output line this:
155 -----------------------------------------------------------------------
156         $ git rev-list --left-right --boundary --pretty=oneline A...B
158         >bbbbbbb... 3rd on b
159         >bbbbbbb... 2nd on b
160         <aaaaaaa... 3rd on a
161         <aaaaaaa... 2nd on a
162         -yyyyyyy... 1st on b
163         -xxxxxxx... 1st on a
164 -----------------------------------------------------------------------
166 Diff Formatting
167 ~~~~~~~~~~~~~~~
169 Below are listed options that control the formatting of diff output.
170 Some of them are specific to linkgit:git-rev-list[1], however other diff
171 options may be given. See linkgit:git-diff-files[1] for more options.
173 -c::
175         This flag changes the way a merge commit is displayed.  It shows
176         the differences from each of the parents to the merge result
177         simultaneously instead of showing pairwise diff between a parent
178         and the result one at a time. Furthermore, it lists only files
179         which were modified from all parents.
181 --cc::
183         This flag implies the '-c' options and further compresses the
184         patch output by omitting hunks that show differences from only
185         one parent, or show the same change from all but one parent for
186         an Octopus merge.
188 -r::
190         Show recursive diffs.
192 -t::
194         Show the tree objects in the diff output. This implies '-r'.
196 Commit Limiting
197 ~~~~~~~~~~~~~~~
199 Besides specifying a range of commits that should be listed using the
200 special notations explained in the description, additional commit
201 limiting may be applied.
205 -n 'number', --max-count='number'::
207         Limit the number of commits output.
209 --skip='number'::
211         Skip 'number' commits before starting to show the commit output.
213 --since='date', --after='date'::
215         Show commits more recent than a specific date.
217 --until='date', --before='date'::
219         Show commits older than a specific date.
221 --max-age='timestamp', --min-age='timestamp'::
223         Limit the commits output to specified time range.
225 --author='pattern', --committer='pattern'::
227         Limit the commits output to ones with author/committer
228         header lines that match the specified pattern (regular expression).
230 --grep='pattern'::
232         Limit the commits output to ones with log message that
233         matches the specified pattern (regular expression).
235 -i, --regexp-ignore-case::
237         Match the regexp limiting patterns without regard to letters case.
239 -E, --extended-regexp::
241         Consider the limiting patterns to be extended regular expressions
242         instead of the default basic regular expressions.
244 --remove-empty::
246         Stop when a given path disappears from the tree.
248 --full-history::
250         Show also parts of history irrelevant to current state of a given
251         path. This turns off history simplification, which removed merges
252         which didn't change anything at all at some child. It will still actually
253         simplify away merges that didn't change anything at all into either
254         child.
256 --no-merges::
258         Do not print commits with more than one parent.
260 --first-parent::
261         Follow only the first parent commit upon seeing a merge
262         commit.  This option can give a better overview when
263         viewing the evolution of a particular topic branch,
264         because merges into a topic branch tend to be only about
265         adjusting to updated upstream from time to time, and
266         this option allows you to ignore the individual commits
267         brought in to your history by such a merge.
269 --not::
271         Reverses the meaning of the '{caret}' prefix (or lack thereof)
272         for all following revision specifiers, up to the next '--not'.
274 --all::
276         Pretend as if all the refs in `$GIT_DIR/refs/` are listed on the
277         command line as '<commit>'.
279 --stdin::
281         In addition to the '<commit>' listed on the command
282         line, read them from the standard input.
284 --quiet::
286         Don't print anything to standard output.  This form of
287         git-rev-list is primarily meant to allow the caller to
288         test the exit status to see if a range of objects is fully
289         connected (or not).  It is faster than redirecting stdout
290         to /dev/null as the output does not have to be formatted.
292 --cherry-pick::
294         Omit any commit that introduces the same change as
295         another commit on the "other side" when the set of
296         commits are limited with symmetric difference.
298 For example, if you have two branches, `A` and `B`, a usual way
299 to list all commits on only one side of them is with
300 `--left-right`, like the example above in the description of
301 that option.  It however shows the commits that were cherry-picked
302 from the other branch (for example, "3rd on b" may be cherry-picked
303 from branch A).  With this option, such pairs of commits are
304 excluded from the output.
306 -g, --walk-reflogs::
308         Instead of walking the commit ancestry chain, walk
309         reflog entries from the most recent one to older ones.
310         When this option is used you cannot specify commits to
311         exclude (that is, '{caret}commit', 'commit1..commit2',
312         nor 'commit1...commit2' notations cannot be used).
314 With '\--pretty' format other than oneline (for obvious reasons),
315 this causes the output to have two extra lines of information
316 taken from the reflog.  By default, 'commit@\{Nth}' notation is
317 used in the output.  When the starting commit is specified as
318 'commit@{now}', output also uses 'commit@\{timestamp}' notation
319 instead.  Under '\--pretty=oneline', the commit message is
320 prefixed with this information on the same line.
322 Cannot be combined with '\--reverse'.
324 --merge::
326         After a failed merge, show refs that touch files having a
327         conflict and don't exist on all heads to merge.
329 --boundary::
331         Output uninteresting commits at the boundary, which are usually
332         not shown.
334 --dense, --sparse::
336 When optional paths are given, the default behaviour ('--dense') is to
337 only output commits that changes at least one of them, and also ignore
338 merges that do not touch the given paths.
340 Use the '--sparse' flag to makes the command output all eligible commits
341 (still subject to count and age limitation), but apply merge
342 simplification nevertheless.
344 --bisect::
346 Limit output to the one commit object which is roughly halfway between
347 the included and excluded commits. Thus, if
349 -----------------------------------------------------------------------
350         $ git-rev-list --bisect foo ^bar ^baz
351 -----------------------------------------------------------------------
353 outputs 'midpoint', the output of the two commands
355 -----------------------------------------------------------------------
356         $ git-rev-list foo ^midpoint
357         $ git-rev-list midpoint ^bar ^baz
358 -----------------------------------------------------------------------
360 would be of roughly the same length.  Finding the change which
361 introduces a regression is thus reduced to a binary search: repeatedly
362 generate and test new 'midpoint's until the commit chain is of length
363 one.
365 --bisect-vars::
367 This calculates the same as `--bisect`, but outputs text ready
368 to be eval'ed by the shell. These lines will assign the name of
369 the midpoint revision to the variable `bisect_rev`, and the
370 expected number of commits to be tested after `bisect_rev` is
371 tested to `bisect_nr`, the expected number of commits to be
372 tested if `bisect_rev` turns out to be good to `bisect_good`,
373 the expected number of commits to be tested if `bisect_rev`
374 turns out to be bad to `bisect_bad`, and the number of commits
375 we are bisecting right now to `bisect_all`.
377 --bisect-all::
379 This outputs all the commit objects between the included and excluded
380 commits, ordered by their distance to the included and excluded
381 commits. The farthest from them is displayed first. (This is the only
382 one displayed by `--bisect`.)
384 This is useful because it makes it easy to choose a good commit to
385 test when you want to avoid to test some of them for some reason (they
386 may not compile for example).
388 This option can be used along with `--bisect-vars`, in this case,
389 after all the sorted commit objects, there will be the same text as if
390 `--bisect-vars` had been used alone.
394 Commit Ordering
395 ~~~~~~~~~~~~~~~
397 By default, the commits are shown in reverse chronological order.
399 --topo-order::
401         This option makes them appear in topological order (i.e.
402         descendant commits are shown before their parents).
404 --date-order::
406         This option is similar to '--topo-order' in the sense that no
407         parent comes before all of its children, but otherwise things
408         are still ordered in the commit timestamp order.
410 --reverse::
412         Output the commits in reverse order.
413         Cannot be combined with '\--walk-reflogs'.
415 Object Traversal
416 ~~~~~~~~~~~~~~~~
418 These options are mostly targeted for packing of git repositories.
420 --objects::
422         Print the object IDs of any object referenced by the listed
423         commits.  'git-rev-list --objects foo ^bar' thus means "send me
424         all object IDs which I need to download if I have the commit
425         object 'bar', but not 'foo'".
427 --objects-edge::
429         Similar to '--objects', but also print the IDs of excluded
430         commits prefixed with a "-" character.  This is used by
431         linkgit:git-pack-objects[1] to build "thin" pack, which records
432         objects in deltified form based on objects contained in these
433         excluded commits to reduce network traffic.
435 --unpacked::
437         Only useful with '--objects'; print the object IDs that are not
438         in packs.
440 --no-walk::
442         Only show the given revs, but do not traverse their ancestors.
444 --do-walk::
446         Overrides a previous --no-walk.
449 include::pretty-formats.txt[]
452 Author
453 ------
454 Written by Linus Torvalds <torvalds@osdl.org>
456 Documentation
457 --------------
458 Documentation by David Greaves, Junio C Hamano, Jonas Fonseca
459 and the git-list <git@vger.kernel.org>.
463 Part of the linkgit:git[7] suite