6 git-whatchanged - Show logs with difference each commit introduces
12 'git whatchanged' <option>...
17 Shows commit logs and diff output each commit introduces.
19 New users are encouraged to use linkgit:git-log[1] instead. The
20 `whatchanged` command is essentially the same as linkgit:git-log[1]
21 but defaults to show the raw format diff output and to skip merges.
23 The command is kept primarily for historical reasons; fingers of
24 many people who learned Git long before `git log` was invented by
25 reading Linux kernel mailing list are trained to type it.
30 `git whatchanged -p v2.6.12.. include/scsi drivers/scsi`::
32 Show as patches the commits since version 'v2.6.12' that changed
33 any file in the include/scsi or drivers/scsi subdirectories
35 `git whatchanged --since="2 weeks ago" -- gitk`::
37 Show the changes during the last two weeks to the file 'gitk'.
38 The "--" is necessary to avoid confusion with the *branch* named
43 Part of the linkgit:git[1] suite