[PATCH] Fix git-init-db creating crap directories.
[git/dscho.git] / Documentation / git-whatchanged.txt
blob742005353aaab062f78036d8a1c5a86b135e5144
1 git-whatchanged(1)
2 ==================
3 v0.99.4, Aug 2005
5 NAME
6 ----
7 git-whatchanged - Show logs with difference each commit introduces.
10 SYNOPSIS
11 --------
12 'git whatchanged' <option>...
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.
21 This manual page describes only the most frequently used options.
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.
31 --max-count=<n>::
32         Limit output to <n> commits.
34 <since>..<until>::
35         Limit output to between the two named commits (bottom
36         exclusive, top inclusive).
38 -r::
39         Show git internal diff output, but for the whole tree,
40         not just the top level.
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'.
48 Author
49 ------
50 Written by Linus Torvalds <torvalds@osdl.org> and
51 Junio C Hamano <junkio@cox.net>
54 Documentation
55 --------------
56 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
58 GIT
59 ---
60 Part of the link:git.html[git] suite