7 git-whatchanged - Show logs with difference each commit introduces.
12 'git whatchanged' <option>...
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
21 This manual page describes only the most frequently used options.
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.
32 Limit output to <n> commits.
35 Limit output to between the two named commits (bottom
36 exclusive, top inclusive).
39 Show git internal diff output, but for the whole tree,
40 not just the top level.
43 Controls the output format for the commit logs.
44 <format> can be one of 'raw', 'medium', 'short', 'full',
50 Written by Linus Torvalds <torvalds@osdl.org> and
51 Junio C Hamano <junkio@cox.net>
56 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
60 Part of the link:git.html[git] suite