Fourth batch
[git/raj.git] / Documentation / git-rev-list.txt
blob5da66232dc3f7b21106cdeba55cc1d94bce04393
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' [<options>] <commit>... [[--] <path>...]
14 DESCRIPTION
15 -----------
17 :git-rev-list: 1
18 include::rev-list-description.txt[]
20 'rev-list' is a very essential Git command, since it
21 provides the ability to build and traverse commit ancestry graphs. For
22 this reason, it has a lot of different options that enables it to be
23 used by commands as different as 'git bisect' and
24 'git repack'.
26 OPTIONS
27 -------
29 :git-rev-list: 1
30 include::rev-list-options.txt[]
32 include::pretty-formats.txt[]
34 GIT
35 ---
36 Part of the linkgit:git[1] suite