2005-05-10 21:32:30 +00:00
|
|
|
git-rev-list(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-rev-list - Lists commit objects in reverse chronological order
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-12-31 17:37:15 +00:00
|
|
|
[verse]
|
2019-10-05 00:13:08 +00:00
|
|
|
'git rev-list' [<options>] <commit>... [[--] <path>...]
|
2005-05-10 21:32:30 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-08-31 22:37:15 +00:00
|
|
|
|
2020-07-09 02:16:48 +00:00
|
|
|
:git-rev-list: 1
|
2020-07-09 02:16:47 +00:00
|
|
|
include::rev-list-description.txt[]
|
2006-08-31 22:37:15 +00:00
|
|
|
|
2013-01-21 19:17:53 +00:00
|
|
|
'rev-list' is a very essential Git command, since it
|
2006-08-31 22:37:15 +00: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-09 23:33:00 +00:00
|
|
|
used by commands as different as 'git bisect' and
|
|
|
|
'git repack'.
|
2005-10-30 09:03:45 +00:00
|
|
|
|
2005-10-03 17:16:30 +00:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2006-08-31 22:37:15 +00:00
|
|
|
|
2008-01-18 22:58:57 +00:00
|
|
|
:git-rev-list: 1
|
|
|
|
include::rev-list-options.txt[]
|
2007-05-13 23:25:45 +00:00
|
|
|
|
|
|
|
include::pretty-formats.txt[]
|
|
|
|
|
2005-05-10 21:32:30 +00:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 07:07:32 +00:00
|
|
|
Part of the linkgit:git[1] suite
|