]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-rev-list.txt
git-rev-list.txt: move description to separate file
[thirdparty/git.git] / Documentation / git-rev-list.txt
1 git-rev-list(1)
2 ===============
3
4 NAME
5 ----
6 git-rev-list - Lists commit objects in reverse chronological order
7
8
9 SYNOPSIS
10 --------
11 [verse]
12 'git rev-list' [<options>] <commit>... [[--] <path>...]
13
14 DESCRIPTION
15 -----------
16
17 include::rev-list-description.txt[]
18
19 'rev-list' is a very essential Git command, since it
20 provides the ability to build and traverse commit ancestry graphs. For
21 this reason, it has a lot of different options that enables it to be
22 used by commands as different as 'git bisect' and
23 'git repack'.
24
25 OPTIONS
26 -------
27
28 :git-rev-list: 1
29 include::rev-list-options.txt[]
30
31 include::pretty-formats.txt[]
32
33 GIT
34 ---
35 Part of the linkgit:git[1] suite