1GIT-WHATCHANGED(1)                Git Manual                GIT-WHATCHANGED(1)
2
3
4

NAME

6       git-whatchanged - Show logs with difference each commit introduces
7

SYNOPSIS

9       git whatchanged <option>...
10
11

DESCRIPTION

13       Shows commit logs and diff output each commit introduces.
14
15       New users are encouraged to use git-log(1) instead. The whatchanged
16       command is essentially the same as git-log(1) but defaults to show the
17       raw format diff output and to skip merges.
18
19       The command is kept primarily for historical reasons; fingers of many
20       people who learned Git long before git log was invented by reading
21       Linux kernel mailing list are trained to type it.
22

EXAMPLES

24       git whatchanged -p v2.6.12.. include/scsi drivers/scsi
25           Show as patches the commits since version v2.6.12 that changed any
26           file in the include/scsi or drivers/scsi subdirectories
27
28       git whatchanged --since="2 weeks ago" -- gitk
29           Show the changes during the last two weeks to the file gitk. The
30           "--" is necessary to avoid confusion with the branch named gitk
31

GIT

33       Part of the git(1) suite
34
35
36
37Git 2.24.1                        12/10/2019                GIT-WHATCHANGED(1)
Impressum