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