dumb-http: do not pass NULL path to parse_pack_index
[git.git] / Documentation / git-whatchanged.txt
blob8b63ceb00e71a5e2f09cf7686b0978dcf71d1e03
1 git-whatchanged(1)
2 ==================
4 NAME
5 ----
6 git-whatchanged - Show logs with difference each commit introduces
9 SYNOPSIS
10 --------
11 [verse]
12 'git whatchanged' <option>...
14 DESCRIPTION
15 -----------
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.
28 Examples
29 --------
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
39         'gitk'
41 GIT
42 ---
43 Part of the linkgit:git[1] suite