Merge master changes into rc.
[git.git] / Documentation / git-whatchanged.txt
1 git-whatchanged(1)
2 ==================
3 v0.99.4, Aug 2005
4
5 NAME
6 ----
7 git-whatchanged - Show logs with difference each commit introduces.
8
9
10 SYNOPSIS
11 --------
12 'git whatchanged' <option>...
13
14 DESCRIPTION
15 -----------
16 Shows commit logs and diff output each commit introduces.  The
17 command internally invokes 'git-rev-list' piped to
18 'git-diff-tree', and takes command line options for both of
19 these commands.
20
21 This manual page describes only the most frequently used options.
22
23
24 OPTIONS
25 -------
26 -p::
27         Show textual diffs, instead of the git internal diff
28         output format that is useful only to tell the changed
29         paths and their nature of changes.
30
31 --max-count=<n>::
32         Limit output to <n> commits.
33
34 <since>..<until>::
35         Limit output to between the two named commits (bottom
36         exclusive, top inclusive).
37
38 -r::
39         Show git internal diff output, but for the whole tree,
40         not just the top level.
41
42 --pretty=<format>::
43         Controls the output format for the commit logs.
44         <format> can be one of 'raw', 'medium', 'short', 'full',
45         and 'oneline'.
46
47
48 Author
49 ------
50 Written by Linus Torvalds <torvalds@osdl.org> and
51 Junio C Hamano <junkio@cox.net>
52
53
54 Documentation
55 --------------
56 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
57
58 GIT
59 ---
60 Part of the link:git.html[git] suite
61