2005-05-10 23:32:30 +02:00
|
|
|
git-rev-list(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-rev-list - Lists commit objects in reverse chronological order
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-12-31 18:37:15 +01:00
|
|
|
[verse]
|
2019-10-05 02:13:08 +02:00
|
|
|
'git rev-list' [<options>] <commit>... [[--] <path>...]
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-09-01 00:37:15 +02:00
|
|
|
|
2020-07-09 04:16:48 +02:00
|
|
|
:git-rev-list: 1
|
2020-07-09 04:16:47 +02:00
|
|
|
include::rev-list-description.txt[]
|
2006-09-01 00:37:15 +02:00
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
'rev-list' is a very essential Git command, since it
|
2006-09-01 00:37:15 +02:00
|
|
|
provides the ability to build and traverse commit ancestry graphs. For
|
|
|
|
this reason, it has a lot of different options that enables it to be
|
2010-01-10 00:33:00 +01:00
|
|
|
used by commands as different as 'git bisect' and
|
|
|
|
'git repack'.
|
2005-10-30 10:03:45 +01:00
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2006-09-01 00:37:15 +02:00
|
|
|
|
2008-01-18 23:58:57 +01:00
|
|
|
:git-rev-list: 1
|
|
|
|
include::rev-list-options.txt[]
|
2007-05-14 01:25:45 +02:00
|
|
|
|
|
|
|
include::pretty-formats.txt[]
|
|
|
|
|
2021-02-18 00:34:21 +01:00
|
|
|
EXAMPLES
|
|
|
|
--------
|
|
|
|
|
|
|
|
* Print the list of commits reachable from the current branch.
|
|
|
|
+
|
|
|
|
----------
|
|
|
|
git rev-list HEAD
|
|
|
|
----------
|
|
|
|
|
|
|
|
* Print the list of commits on this branch, but not present in the
|
|
|
|
upstream branch.
|
|
|
|
+
|
|
|
|
----------
|
|
|
|
git rev-list @{upstream}..HEAD
|
|
|
|
----------
|
|
|
|
|
|
|
|
* Format commits with their author and commit message (see also the
|
|
|
|
porcelain linkgit:git-log[1]).
|
|
|
|
+
|
|
|
|
----------
|
|
|
|
git rev-list --format=medium HEAD
|
|
|
|
----------
|
|
|
|
|
|
|
|
* Format commits along with their diffs (see also the porcelain
|
|
|
|
linkgit:git-log[1], which can do this in a single process).
|
|
|
|
+
|
|
|
|
----------
|
|
|
|
git rev-list HEAD |
|
|
|
|
git diff-tree --stdin --format=medium -p
|
|
|
|
----------
|
|
|
|
|
|
|
|
* Print the list of commits on the current branch that touched any
|
|
|
|
file in the `Documentation` directory.
|
|
|
|
+
|
|
|
|
----------
|
|
|
|
git rev-list HEAD -- Documentation/
|
|
|
|
----------
|
|
|
|
|
|
|
|
* Print the list of commits authored by you in the past year, on
|
|
|
|
any branch, tag, or other ref.
|
|
|
|
+
|
|
|
|
----------
|
|
|
|
git rev-list --author=you@example.com --since=1.year.ago --all
|
|
|
|
----------
|
|
|
|
|
|
|
|
* Print the list of objects reachable from the current branch (i.e., all
|
|
|
|
commits and the blobs and trees they contain).
|
|
|
|
+
|
|
|
|
----------
|
|
|
|
git rev-list --objects HEAD
|
|
|
|
----------
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|